Skip to main content

Unlock/Reset the password for the users in Oracle

Let's say the user's password expired and locked it in Oracle. To unlock the users, use below commands.

  1. sqlplus "/as sysdba"
  2. alter user userName identified by password;
  3. alter user userName account unlock;

Comments

Popular posts from this blog