Operating System - HP-UX
1753787 Members
7452 Online
108799 Solutions
New Discussion юеВ

Re: How to detect Oracle db is in process of shutting down

 
SOLVED
Go to solution
Arturo Galbiati
Esteemed Contributor

Re: How to detect Oracle db is in process of shutting down

hi,
I suggest:
alter system checkpoint
shutdown abort
startup restrict
shutdown immediate

In this way you will baort all teh sessions connected but making a sutdown immediate as wel you will clean all the momeries, falf, etc.

Of course you must ahve a user with restricted session privilege to perform this.

HTH,
Art
Nguyen Anh Tien
Honored Contributor

Re: How to detect Oracle db is in process of shutting down

check by issuing command:
#ps -ef|grep ora
HTH
tienna
HP is simple
Frank de Vries
Respected Contributor

Re: How to detect Oracle db is in process of shutting down

Thanks for input,
it helped me to build the complete picture,
and not to overlook the obvious.
Look before you leap