2019-11-05 16:39:34 -08:00
|
|
|
#!/bin/sh
|
2019-12-02 19:20:47 -08:00
|
|
|
LOGFILE="$1"
|
2019-11-05 16:39:34 -08:00
|
|
|
|
|
|
|
sqlplus / as sysdba <<EOF
|
|
|
|
shutdown immediate
|
2019-12-02 19:20:47 -08:00
|
|
|
spool $LOGFILE
|
2019-11-05 16:39:34 -08:00
|
|
|
startup
|
2019-12-02 19:20:47 -08:00
|
|
|
spool off
|
2019-11-05 16:39:34 -08:00
|
|
|
quit
|
|
|
|
EOF
|
|
|
|
|