Oracle Tips : How you know password hashkey in 11g
In 9i 10g we can know password hashkey via dba_users
SQL> SELECT USERNAME,PASSWORD FROM DBA_USERS;
But in 11g the password hash is no longer accessible via dba_users
But we can show password hashkey via sys.user$
Connect to sys as sysdba
and use this query
SQL> SELECT NAME,PASSWORD FROM SYS.USER$;
Showing posts with label How you know password hashkey in 11g. Show all posts
Showing posts with label How you know password hashkey in 11g. Show all posts
Sunday, June 21, 2009
Subscribe to:
Posts (Atom)