A Oracle DBA's BLOG

Welcome to my ORACLE DBA blog. You will be Amazing!!!

Wednesday, November 7, 2012

Oracle Rename User

This article present easy way to change/rename User name and password.

Select FOR your users

SQL> select user#,name from user$;
Update user name
SQL>update user$ set name=’TESTUSER’ where name=’VEYSI’;
SQL>commit;
Close your database
SQL>shutdown immediate;
SQL>startup;

SQL> alter user TESTUSER identified by TESTUSER;

No comments:

Post a Comment