Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: How to tune this query ...
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) requestFROM v$lock l, v$session s,
AND s.TYPE != 'BACKGROUND' AND t.obj# = l.id1 AND u.USER# = t.owner#
Raj
********************************************************************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 ---------------------------------
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