If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Oracle > ora-01034 : ORACLE not available

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-04-12, 05:28
Tapan6415 Tapan6415 is offline
Registered User
 
Join Date: Jan 2012
Posts: 22
ora-01034 : ORACLE not available

Hii..,

i am using Windows vista Business 32bit, intalled s/w Oracle 11.2.0

i created my database in oracle 11.2.0 manually and i able to mount successfully and at last i also run the 3 scripts from my command prompt but when ever i am starting my sqlplus and i am entering "scott/tiger" or "orcl/tiger" it shows me error

>ora-01034 : ORACLE not available
ora- 27101: shared memory realm does not exist
Process ID:0
Session ID:0
Serial number:0

Thanx..
Reply With Quote
  #2 (permalink)  
Old 02-04-12, 09:54
anacedent anacedent is offline
Registered User
 
Join Date: Aug 2003
Location: Where the Surf Meets the Turf @Del Mar, CA
Posts: 6,416
Code:
034, 00000, "ORACLE not available"
// *Cause: Oracle was not started up. Possible causes include the following:
//         - The SGA requires more space than was allocated for it.
//         - The operating-system variable pointing to the instance is
//           improperly defined.
// *Action: Refer to accompanying messages for possible causes and correct
//          the problem mentioned in the other messages. 
//          If Oracle has been initialized, then on some operating systems,
//          verify that Oracle was linked correctly. See the platform
//          specific Oracle documentation.
__________________
You can lead some folks to knowledge, but you can not make them think.
The average person thinks he's above average!
For most folks, they don't know, what they don't know.
Reply With Quote
  #3 (permalink)  
Old 02-06-12, 09:16
pmo pmo is offline
Registered User
 
Join Date: Nov 2005
Location: Gex - France
Posts: 15
I'm not using Oracle on Windows, but I guess it works quite the same way as Unix. So:
You have to specify to which database you want to connect. To do that, you must set up the global variable ORACLE_SID.
Another solution is to use a tns entry (in the tnsnames.ora file) and use this sqlplus syntax:
sqlplus user/password@tns-entry-name
Note: in this second solution, you must also start a listener for this database.
Reply With Quote
  #4 (permalink)  
Old 02-06-12, 10:19
anacedent anacedent is offline
Registered User
 
Join Date: Aug 2003
Location: Where the Surf Meets the Turf @Del Mar, CA
Posts: 6,416
Ora-12560: Tnsrotocol adapter error [id 989716.1]
__________________
You can lead some folks to knowledge, but you can not make them think.
The average person thinks he's above average!
For most folks, they don't know, what they don't know.
Reply With Quote
  #5 (permalink)  
Old 02-06-12, 10:31
pmo pmo is offline
Registered User
 
Join Date: Nov 2005
Location: Gex - France
Posts: 15
Did you check your global env variables? ORACLE_HOME, ORACLE_SID and PATH
If PATH is not set with the correct oracle_home at the beginning, you can get this error.
Reply With Quote
  #6 (permalink)  
Old 02-07-12, 03:21
aflorin27 aflorin27 is offline
Registered User
 
Join Date: Apr 2008
Location: Iasi, Romania
Posts: 317
Maybe your instance is not started.
Try these steps:
1. open cmd prompt
2. type: sqlplus /nolog
3. type: connect sys/your_password as sysdba
4. if you get connected to an idle instance, type: startup
__________________
Florin Aparaschivei
Iasi, Romania
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On