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 to tune this query ...

Re: How to tune this query ...

From: Barbara Baker <barbarabbaker_at_yahoo.com>
Date: Fri, 08 Nov 2002 13:43:55 -0800
Message-ID: <F001.004FF5C4.20021108134355@fatcity.com>

Raj:
I had trouble with this very query. Posted it to this list. Never came up with anything. What fixed the query for me was to add the ordered hint (select /*+ ordered */). You might give it a try.
Good luck!!  

Barb  

 "Jamadagni, Rajendra" <Rajendra.Jamadagni_at_espn.com> wrote: I am looking at oracle supplied locking query ... any idea how to tune this ?

SELECT l.SID,s.serial#,s.username,s.terminal,

        DECODE(l.TYPE,'RW','RW - Row Wait Enqueue', 'TM','TM - DML Enqueue', 'TX','TX - Trans Enqueue', 'UL','UL - User',l.TYPE||'System') res,

        SUBSTR(t.NAME,1,20) TAB,u.NAME owner, 
        l.id1,l.id2, 
        DECODE(l.lmode,1,'No Lock', 
                2,'Row Share', 
                3,'Row Exclusive', 
                4,'Share', 
                5,'Shr Row Excl', 
                6,'Exclusive',NULL) lmode, 
        DECODE(l.request,1,'No Lock', 
                2,'Row Share', 
                3,'Row Excl', 
                4,'Share', 
                5,'Shr Row Excl', 
                6,'Exclusive',NULL) request 
FROM v$lock l, v$session s,
sys.USER$ u,sys.obj$ t
WHERE l.SID = s.SID
AND s.TYPE != 'BACKGROUND' 
AND t.obj# = l.id1 
AND u.USER# = t.owner# 


Raj



Rajendra Jamadagni MIS, ESPN Inc. Rajendra dot Jamadagni at ESPN dot com
Any opinion expressed here is personal and doesn't reflect that of ESPN Inc. QOTD: Any clod can have facts, but having an opinion is an art!
********************************************************************This e-mail message is confidential, intended only for the named recipient(s) above and may contain information that is privileged, attorney work product or exempt from disclosure under applicable law. If you have received this message in error, or are not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 and delete this e-mail message from your computer, Thank you.*********************************************************************2



---------------------------------

Do you Yahoo!?
U2 on LAUNCH - Exclusive medley & videos from Greatest Hits CD
--

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

Author: Barbara Baker
  INET: barbarabbaker_at_yahoo.com
Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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 Fri Nov 08 2002 - 15:43:55 CST

Original text of this message

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