Let's say the user's password expired and locked it in Oracle. To unlock the users, use below commands.
- sqlplus "/as sysdba"
- alter user userName identified by password;
- alter user userName account unlock;
Comments
Post a Comment