ypwitkow's suggestion should work. Alternatively
try this:
sqlplus '/as sysdba'
This will let you login to Oracle as sys using OS authentication (must be login as Oracle user in Unix/Windows).
Once you are in you can issue:
ALTER USER SYS ACCOUNT UNLOCK;
ALTER USER SYSTEM ACCOUNT UNLOCK;
etc.
After that you should be able to login to the unlocked accounts.
Main Topics
Browse All Topics





by: ypwitkowPosted on 2003-05-05 at 23:28:39ID: 8468294
Try to log in sqlplus:
connect sys/change_on_install as sysdba;
alter user system account unlock;
and change the passwords for sys and system.
Greetings,
Lucy