New answers tagged shutdown
0
You can use the dbstart/dbstart scripts which come with an Oracle install. They are available under $ORACLE_HOME/bin.
After a fresh install you have to edit the /etc/oratab file:
# cat /etc/oratab
# format: $ORACLE_SID:$ORACLE_HOME:N|Y
my_sid:/home/juser/app/juser/product/11.2.0/dbhome_1:N
# sed -i 's/:N$/:Y/' /etc/oratab
# grep my_sid /etc/oratab
...
0
Why do you need it at all? What is the reason? For shutdown you have 3 options:
plain shutdown - waits for sessions end
shutdown immediate - rollbacks and ends sessions (waits for rollback finish)
shutdown abort - kills everything - usually database has to perform some recovery on startup.
PS: you probably do not need Enterprise manager to run, if you ...
Top 50 recent answers are included