sqlplus / as sysdba
sqlplus sys as sysdba
Are there any difference between / and sys?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is now no difference in
/ AS SYSDBAandSYS AS SYSDBA.Tom Kyte specifically stipulates this in this thread.
Basically he explains that the SYSDBA suffix effectively connects you to the database as SYS no matter what credentials you give, the example he uses is:
connect santa/claus as sysdba
Hope it helps…
P.S. This was not the case in 8i and earlier but hopefully you are using a database and SQL*Plus from this century. 🙂