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

Home -> Community -> Usenet -> c.d.o.server -> Re: V$SQLAREA to determine most disk intensive SQL

Re: V$SQLAREA to determine most disk intensive SQL

From: Brian Peasland <dba_at_remove_spam.peasland.com>
Date: Tue, 2 Mar 2004 14:26:11 GMT
Message-ID: <40449983.54ABAA54@remove_spam.peasland.com>


> ... any ideas about the interpretation of the stored procedure call ?

Not at this time. Try issuing the following query:

SELECT disk_reads/executions, sql_text, first_load_time FROM V$SQLAREA
where disk_reads > 10000
order by 1 desc;

See if that runs (it should). If it doesn't run satisfactorily, then post the exact error messages.

Thanks,
Brian

-- 
===================================================================

Brian Peasland
dba_at_remove_spam.peasland.com

Remove the "remove_spam." from the email address to email me.


"I can give it to you cheap, quick, and good. Now pick two out of
 the three"
Received on Tue Mar 02 2004 - 08:26:11 CST

Original text of this message

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