Re: RE: ORA-03113

2001-11-29 Thread Greg Faktor
If I'll apply this command it's will take all oracle processes down for every instance in this box? Thanks. [EMAIL PROTECTED] 11/29 10:35 AM Why don't you want to want to take all the oracle processes down? I thought that's what you wanted to accomplish with shutdown immediate? Go

RE: RE: ORA-03113

2001-11-29 Thread Koivu, Lisa
Title: RE: RE: ORA-03113 Yes, you are right. If you have multiple instances change the command to something like this, assuming your sid name is SID ps -fu oracleSID|grep -v PPID|awk '{ print $2; }'|xargs kill -9 Try it without the xargs kill -9 to verify it's choosing what you need

RE: RE: ORA-03113

2001-11-29 Thread Rao, Maheswara
Title: RE: RE: ORA-03113 Lisa, ps -fu oracleSID - command would not work. The reason is when you -u option with ps, it looks for the user by name mentioned. In this case, there would not be any user by name oracleSID (most likely). All the oracle processes would be owned by the user

RE: RE: ORA-03113

2001-11-29 Thread Ball, Terry
Try doing: ps -ef|grep pmon|grep SID It will look something like oracle 20065 1 0 Nov 11 ?0:07 ora_pmon_BI Issue the kill against the PPID that is returned, in this case 20065. The kill command would look like: kill -9 20065 Terry -Original Message-

RE: RE: ORA-03113

2001-11-29 Thread Koivu, Lisa
Title: RE: RE: ORA-03113 Thanks Rao for correcting me. Like I confessed earlier, I am unix savvy, not an expert :) -Original Message- From: Rao, Maheswara [SMTP:[EMAIL PROTECTED]] Sent: Thursday, November 29, 2001 1:55 PM To: Multiple recipients of list ORACLE-L Subject: RE: RE