Sunday, November 18, 2012

Change the oracle database user password



How to change a oracle database user password in console?

Connect to the database using sysdba user by below command,

sqlplus "/as sysdba"

Then chnage the user password using the below command,

alter user <user> identified by <password>;

No comments:

Post a Comment