username and password in oracle [message #41584] |
Tue, 14 January 2003 16:42 |
pras
Messages: 57 Registered: June 2002
|
Member |
|
|
Hi
I am developing a front end using VB with Oracle enterprise edition as back end. I have a form on which
the user can enter the username and password.For this I am acessing the dba_users table from the database.Basically I am comparing the username from this table with the entered username on the form.I would like to know is there any table in which passwords are stored.(In dba_users table there is no column for password.)
I appreciate your help!
prasanna
|
|
|
Re: username and password in oracle [message #41585 is a reply to message #41584] |
Tue, 14 January 2003 18:18 |
Todd Barry
Messages: 4819 Registered: August 2001
|
Senior Member |
|
|
The password is not stored anywhere in Oracle - encrypted or not. It is hashed.
I would suggest that you just verify the user/password by attempting to connect with those values instead of trying to check them (which you cannot do anyway) with another "super user" account.
|
|
|
|
|