need ur help [message #60018] |
Fri, 09 January 2004 08:33 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Zainulabdeen Mohd Yaseen
Messages: 4 Registered: January 2004
|
Junior Member |
|
|
Dear Friends,
Today i install oracle application server, after that i try to run SQL +, it was asking username and password, i enter Scott, Tiger, but the system will not accpte, Please help me what i will do,
My mail; Yansthais@yahoo.com
thanks
|
|
|
Re: need ur help [message #60019 is a reply to message #60018] |
Fri, 09 January 2004 10:18 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Mark K
Messages: 18 Registered: October 2003
|
Junior Member |
|
|
At the risk of over-simplifying, logins are case sensitive. So if you entered "Scott/Tiger" as you typed in your message, that would be different than "scott/tiger"
If that doesn't work, don't fight it further. Login with "sys as sysdba" and change the password of scott:
This should be the sequence:
% sqlplus 'sys as sysdba'
SQL> alter user scott identified by <newpassword>
SQL> exit
% sqlplus scott/<newpassword>
SQL>
|
|
|