Can't connect to Oracle after running alter statement
After running an alter statement and restarting the system I cannot connect to Oracle. It gives me the errors "ORA-01034: ORACLE not available" and "ORA-27101: shared memory realm does not exist."
Alter system set Processes=2 SCOPE=SPFILE;After this when the system was restarted I have not been able to connect to Oracle. It gives me the error:
ORA-01034: ORACLE not available ORA-27101: shared memory realm does not existI searched the whole globe for a solution. From a forum I found a solution that told to start Oracle from pfile. But the problem that I am facing here is that I couldn't even go to the SQL prompt because of the errors mentioned above.
You need to modify your SPFILE's contents. Unfortunately, you cannot start the instance. So try this little tr...
Continue Reading This Article
Enjoy this article as well as all of our content, including E-Guides, news, tips and more.
ick:
- STARTUP NOMOUNT the instance
- CREATE PFILE FROM SPFILE;
- Using a text editor, modify the pfile to have more than two processes. The pfile will be in the default location.
- CREATE SPFILE FROM PFILE;
- ALTER DATABASE OPEN;
Dig Deeper on Oracle database backup and recovery
Have a question for an expert?
Please add a title for your question
Get answers from a TechTarget expert on whatever's puzzling you.
Meet all of our Oracle Database / Applications experts
View all Oracle Database / Applications questions and answers
Start the conversation
0 comments