difference in '/ as sysdba' and 'sys as sysdba'
So, I'm trying to log on into an oracle instance (11g R2 on win) with an 'sqlplus / as sysdba' but I got an ORA-01031 errot..
after I change an sqlnet.ora to
SQLNET.AUTHENTICATION_SERVICES= (NONE), I can log on (but all DB users get an ORA-12638 error after that)..
but when I try to connect using 'sqlplus sys as sysdba' (with typing pwd) everything works fine...
I wanted to log on into an instance as sysdba... what's the difference in those 2 ways?