You can change your password in one database (I have not done this for several years - so try this carefully - the last time I did this was 7.3.4 and 8i), then copy the hash from the database to the database data. It worked. So ... In the database 1
SQL> password Changing password for SCOTT Old password: New password: Retype new password:
Then in the same database
SQL> SELECT password FROM dba_users WHERE username='SCOTT'; PASSWORD --------------- F81184D39902C27
Now go to another database and change this password:
SQL> ALTER USER scott IDENTIFIED BY VALUES 'F81184D39902C27'; User altered.
You can write a small program that will be connected to several changes. I only have 11i to check this out.
source share