I am connecting to Oracle DB using sysdba:
sqlplus / as sysdba
What is the default password for sysdba user. I tried in net and found out the default password is change_on_install
but it is not working for me.
I am interested to know if Oracle DB maintains some file or DB table where it stores the passwords.
SYSDBA
isn't a username, it's a connection option. Normally, you connect to SQL*Plus usingsqlplus user/password
orsqlplus sys/sys_password as sysdba
. If you're logged into the machine running Oracle, and the user you're logged in has suitable privileges on the machine (normally membership of a certain group), you can log in without a username and password, by writingsqlplus / as sysdba
. This logs you in as the userSYS
. – Luke Woodward Mar 27 at 14:58