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

Home -> Community -> Mailing Lists -> Oracle-L -> enqueue wait objects?

enqueue wait objects?

From: <solbeach_at_cox.net>
Date: Fri, 20 Feb 2004 10:23:42 -0500
Message-Id: <20040220152342.QCFV29509.fed1mtao04.cox.net@smtp.west.cox.net>


The SQL below allows me to identify users involved with enqueue waits.



SELECT DECODE(request,0,'Holder: ','Waiter: ')||sid sess,

         id1, id2, lmode, request, type
    FROM V$LOCK
   WHERE (id1, id2, type) IN

         (SELECT id1, id2, type FROM V$LOCK WHERE request>0)    ORDER BY id1, request



How do I identify which database objects are involved with an enqueue wait?

Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--

Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
Received on Fri Feb 20 2004 - 09:23:42 CST

Original text of this message

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