STARTUP/SHUTDOWN Oracle database via .BAT file and SVRMGRL – dBforums
Set it up as a .BAT file and run it in the AT scheduler…submit a job to the scheduler that does …
svrmgrl @filename
the above file should look something like …
set instance instancename
connect internal/password@instancename
shutdown immediate … (or whatever you are looking to do)
exit