We are working with an oracle database in which the person that set it up is "long gone" and thus do not know the sysdba password, but need it. We have root access to the box (its on linux). Is there any way to recover or change the sys passwords?
相关问题
- Is shmid returned by shmget() unique across proces
- How can I implement password recovery in an iPhone
- how to get running process information in java?
- Can I skip certificate verification oracle utl_htt
- Error building gcc 4.8.3 from source: libstdc++.so
You can connect to the database locally using the combination of environment variables:
Depending on your OS:
Unix/Linux:
Windows
Once connected, you could then alter the user to modify the password:
Have you tried logging into Linux as your installed Oracle user then
When you log in you'll be able to change your password.
Good luck :)