Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: How do I check whether a rollback activity is going on

RE: How do I check whether a rollback activity is going on

From: kkennedy <kkennedy_at_firstpoint.com>
Date: Tue, 16 Jul 2002 11:23:35 -0800
Message-ID: <F001.0049980C.20020716112335@fatcity.com>


I found this once but can't seem to find the full details at the moment. This will help though (Solaris8):

kill -l # lists all kill signal names

kill -l KILL # lists numeric equivalent for signal name KILL

and then if you wish to obsess on the subject:

for x in $(kill -l)
do
print $x $(kill -l $x)
done

Kevin Kennedy
First Point Energy Corporation

-----Original Message-----
Sent: Tuesday, July 16, 2002 11:41 AM
To: Multiple recipients of list ORACLE-L

I was wondering where a list of kill signals (kill -1, kill -9 etc) can be found.

I've always used kill -9 but I'd rather try something less drastic first, even though I've never run into problems using kill -9 pid before. man pages don't seem to list the signals (Solaris 7).

thanks

mkb

(hmmm....can you say mutating thread...)


Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: mkb
  INET: mkb125_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: kkennedy
  INET: kkennedy_at_firstpoint.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Tue Jul 16 2002 - 14:23:35 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US