ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege

错误:
SQL> conn test/test
ERROR:
ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege

解决:
开始-->运行:
 sqlplus / nolog
 或
 sqlplus / as sysdba
SQL> alter system disable restricted session;
SQL> conn test/test

你可能感兴趣的:(ORA-01035: ORACLE only available to users with RESTRICTED SESSION privilege)