ORA-28000: the account is locked error getting frequently

后端 未结 7 1988
借酒劲吻你
借酒劲吻你 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:50

    Login to SQL Plus client on the oracle database server machine.

    enter user-name: system

    enter password: password [Only if, if you have not changed your default password while DB installation]

    press enter. after which, you will be seeing the connection status.

    Now,

    SQL> ALTER USER [USER_NAME] ACCOUNT UNLOCK;
    

    press enter.

    you will be seeing message: user altered.

    Now try login with the user name on db client[sqldeveloper].

提交回复
热议问题