Hello
I need to reset password for one of the logins since somehow it was lost. But we are not sure if it will give problem elsewhere. Is there a way to 'store' the ealier password somewhere. We donot remember the earlier password. What commands would be the ones to use? For oracle we have
select username, password from dba_users where ; (say) Query1
alter user username identified by new_password_here;
To put back the old pw:
alter user username identified by values 'password value from Query 1 above' ;