Change password of an user in Oracle

Change password of an user

Check the user status and existence

select username, account_status from dba_users where username = 'SCOTT';

Change the Password of an User

ALTER USER SCOTT identified by NEW_PWD;

You can also lock and unlock the user if its show locked in Account_status

-- Unlock/lock a user
ALTER USER SCOTT account unlock;
ALTER USER SCOTT account lock;

If user can change password on first login attempt

ALTER USER SCOTT password expire;

This entry was posted in Oracle on by .
Unknown's avatar

About SandeepSingh

Hi, I am working in IT industry with having more than 15 year of experience, worked as an Oracle DBA with a Company and handling different databases like Oracle, SQL Server , DB2 etc Worked as a Development and Database Administrator.

Leave a Reply