I installed Oracle 11g. I didn't change the passwords for SYSTEM and SYS. However now I find that the default passwords do not work. Please help.
closed as off topic by legoscia, Omar, Jean, Paulo Scardine, Niall C. Apr 26 at 18:04
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
It is possible to connect to the database without specifying a password. Once you've done that you can then reset the passwords. I'm assuming that you've installed the database on your machine; if not you'll first need to connect to the machine the database is running on.
See also here. (Note: I haven't tried any of this on Oracle 11g; I'm assuming they haven't changed things since Oracle 10g.) |
|||
|
|
|
Login into the machine as oracle login user id( where oracle is installed)..
One more check, while oracle installation and database confiuration assistant setup, if you configure any database then you might have given password and checked the same password for all other accounts.. If so, then you try with the password which you have given in your database configuration assistant setup. Hope this will work for you.. |
|||||
|
|
actually during the installation process.it will prompt u to enter the password..At the last step of installation, a window will appear showing cloning database files..After copying,there will be a option..like password managament..there we hav to set our password..and user name will be default.. |
|||
|
|
|
Once installed in windows Followed the instructions starting from Run SQL Command Line (command prompt) then... v. SQL> connect /as sysdba Connected. [SQL prompt response] vi. SQL> alter user SYS identified by "newpassword"; User altered. [SQL prompt response] Thank you. This minimized a headache |
|||
|
|