Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PASSWORDS

Status
Not open for further replies.

andypara

Programmer
Apr 25, 2002
32
0
0
GB
Where are the passwords kept? I need to find the password for a particular user. How can I do this? Is it a data dictionary table?
 
Do you tzlk zbout the password of a schema (oracle users) ?

In this case, oracle scripts the password of those schemas, and you can see the scripts values in the view
dba_users

select username,password from dba_users;
 
Oracle won't let you query passwords. To do so would be an unbelievably serious security problem. Querying dba_users will only return an encrypted password, not the actual password.

If you can't remember your password, have someone with dba privileges log in and change your password.

alter user user_name identified by new_password;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top