Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle shutdown abort on NT
>>Is this for an 8 installation??
Yes it is an Oracle 8...
>>If you're running Oracle7 on (DEC-ALPHA) NT4, you must also shutdown the
service
(oracleservice{SID}), as this holds the databaese files locked open.
use a "net stop oracleservice{SID}" after the shutdown script, and a "net
start......" before the startup.
I found this out the hard way! -- if you're using ntbackup.exe, check the
logfile for "File in Use" errors, and make sure that none of you database files
are skipped.
<<
I thought everyone using NT already had some variety of the following scripts...
REM -----------------------------------------------------REM OCSTOP.BAT - Stop Open Services for backup REM
REM -----------------------------------------------------REM REM 1.0 6/25/98 rlr Initial Version REM
REM Stop IIS-Related Services
REM - FTP Publishing Service
sc stop "MSFTPSVC"
REM - Microsoft SMTP Service
sc stop "SMTPSVC"
REM - World Wide Web Publishing Service
sc stop "W3SVC"
REM - Now can stop IISADMIN
sc stop "IISADMIN"
REM exit
REM -----------------------------------------------------REM OCstart.BAT - Start Open Services for backup REM
REM Ver Date Who Comments REM --- ------- --- ------------------------- REM 1.0 6/25/98 rlr Initial VersionREM
REM Start IIS-Related Services
REM - World Wide Web Publishing Service
sc start "W3SVC"
REM - Microsoft SMTP Service
sc start "SMTPSVC"
REM - FTP Publishing Service
sc start "MSFTPSVC"
REM - Now can start IISADMIN
sc start "IISADMIN"
REM exit
Paul in VT Received on Thu Sep 16 1999 - 14:21:43 CDT
![]() |
![]() |