When trying to shutdown or startup my database using scripts, I receive the above message after server mgr has been opened. My startup and shutdown scripts are as follows:
connect internal
startup
exit
connect internal
shutdown immediate
exit
Any ideas what this message could mean and/or how to resolve?
The entire shutdown.sql and startdown.sql script is contained in my original message. All the bat file does is set the SID, startup server mgr and call each script as follows:
SET ORACLE_SID=TSTLIMS
d:\Oracle\Ora81\BIN\Svrmgrl @d:\Oracle Backups\shutdown.sql
SET ORACLE_SID=TSTLIMS
d:\Oracle\Ora81\BIN\Svrmgrl @d:\Oracle Backups\Oracle Scripts\startup.sql
Problem turned out to be that in my directory names there was a space. Ex: d:\Oracle Backups\Backup Scripts\shutdown.bat. When changed the directory names and made it all one word, the problem was resolved.
Bookmarks