ORA-28000: the account is locked error getting frequently

后端 未结 7 1989
借酒劲吻你
借酒劲吻你 2020-12-13 12:21

I am getting the error :

 ORA-28000: the account is locked 

Is this a DB Issue? When I unlock user account using the comma

7条回答
  •  庸人自扰
    2020-12-13 12:56

    One of the reasons of your problem could be the password policy you are using.

    And if there is no such policy of yours then check your settings for the password properties in the DEFAULT profile with the following query:

    SELECT resource_name, limit
    FROM dba_profiles 
    WHERE profile = 'DEFAULT'
    AND resource_type = 'PASSWORD';
    

    And If required, you just need to change the PASSWORD_LIFE_TIME to unlimited with the following query:

    ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
    

    And this Link might be helpful for your problem.

提交回复
热议问题