here is what I understand when Oracle says connected to an idle instance
==============================================================
Microsoft Windows 2000 [Version 5.00.2195]
(C) Copyright 1985-2000 Microsoft Corp.
D:\>set oracle_sid=sridevi
-- at this stage there is neither service handler (Oracle executable)
-- nor an instance nor a database
D:\>sqlplus /nolog
SQL*Plus: Release 9.2.0.5.0 - Production on Wed Jul 21 22:44:16 2004
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
-- ora-12560 was spit as there was no service handler
-- listener is up and running.
-- in the absence of service hadler or connect string no check can be done
-- to connect to oracle instance
SQL> connect sys/sys@sridevi as sysdba
ERROR:
ORA-12500: TNS:listener failed to start a dedicated server process
-- even though the connect string has the tns alias which is identifiable
-- as a service for service by listener.
-- The process of starting up a dedicated server process failed.
-- The executable could not be found or
-- the environment may be set up incorrectly
-- in this case the executable is not found as the service handler is not started.
SQL>
-- I started the service for the oracle instance and set the environment and connected
SQL> connect sys/sys@sridevi as sysdba
Connected to an idle instance.
-- So I am connected to Oracle executable which is ready to serve a instance through a dedicated
-- service. but no instance is there
SQL> startup
ORACLE instance started.
I take it that you're someone who's just been "thrown" into this job of administrating a database (or just playing with Oracle). Either way, I would advise you to seriously sit down and read up on the basic understandings of Oracle and how it works before you break something. Once you have the basic concepts down (or have your company send you to some classes) then come back here and ask for advise.
When you ask what does connected to an idle instance mean, that's like asking what does "P" stand for on the shifter of a car?
P= Pass R= Race N= Nitrous D= Drag
Oracle it's not just a database it's a lifestyle!
-------------- BTW....You need to get a girlfriend who's last name isn't .jpg
I think you posted this in the wrong thread. sonofsita has made a good start on an article I always intended to write: "101 ways to fail to start a database".
Bookmarks