Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Startup/Shutdown of database on Windows

Status
Not open for further replies.

vbcdor

Technical User
Jan 27, 2004
39
US
Hi,
How are the Oracle databases normally started and shutdown on reboots on W2K servers? I know the services are started and stoped by the OS, but what about the database itself?
 

The database itself is a service (OracleServiceXXXX) where XXXX is the database sid.





----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Vbcdor,

As an alternative to stopping/starting the Windows service, you can bounce an Oracle database on Windows by logging into SQL*Plus and issuing a standard shutdown/startup series:
Code:
c:\> sqlplus /nolog
SQL> connect / as sysdba
SQL> shutdown immediate (or "abort" if necessary)
SQL> startup

Let us know your results,

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
@ 16:41 (28Jan05) UTC (aka "GMT" and "Zulu"),
@ 09:41 (28Jan05) Mountain Time

Click here to Donate to Tsunami Relief. 100% of your contributions here go to the victims...0% to administration.
They were "The First-Responder" to the disaster, with relief deliveries arriving before Red Cross and U.S. aid.
 
thanks, I thought there was more to it than that. so if I don't want the database to start back up between reboots, I can just disable or change the service to manual.
 
That is correct.

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
@ 19:12 (28Jan05) UTC (aka "GMT" and "Zulu"),
@ 12:12 (28Jan05) Mountain Time

Click here to Donate to Tsunami Relief. 100% of your contributions here go to the victims...0% to administration.
They were "The First-Responder" to the disaster, with relief deliveries arriving before Red Cross and U.S. aid.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top