I can't login to sqlplus using:
sqlplus / as sysdba
All the time, it gives me:
ERROR: ORA-01031: insufficient privileges
If someone could help me, that would be awesome.
I can't login to sqlplus using:
sqlplus / as sysdba
All the time, it gives me:
ERROR: ORA-01031: insufficient privileges
If someone could help me, that would be awesome.
Copyright © 2021 Jogjafile Inc.
When you login like
sqlplus / as sysdba
i'm under the impression you are saying use the default login, and I do not want to enter a password.In a linux unix environment the ORACLE_SID must be set to a value:
If this is not enought, look at
sqlnet.ora
inoracle_home/network/admin
and make sure you do NOT haveSQLNET.AUTHENTICATION_SERVICES=NONE
(if you do -- you will get theora-01031
).