ERROR:
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
SVR4 Error: 2: No such file or directory
Solution :
You need to Manually startup the database
check ORACLE_SID has value
sqlplus "sys/password as sysdba"
startup;
Connected to an idle instance.
SQL> startORACLE instance started.
SQL> exit
$ export ORACLE_SID=ANOTHER_SID
$ sqlplus "sys/password as sysdba"
SQL> startup;
SQL> exit
$ export ORACLE_SID=jcrdb
$ sqlplus "sys/password as sysdba"
SQL> startup;
SQL> exit
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
SVR4 Error: 2: No such file or directory
Solution :
You need to Manually startup the database
check ORACLE_SID has value
sqlplus "sys/password as sysdba"
startup;
Connected to an idle instance.
SQL> startORACLE instance started.
SQL> exit
$ export ORACLE_SID=ANOTHER_SID
$ sqlplus "sys/password as sysdba"
SQL> startup;
SQL> exit
$ export ORACLE_SID=jcrdb
$ sqlplus "sys/password as sysdba"
SQL> startup;
SQL> exit
Comments
Post a Comment