Query for the Top 10 by Parse Calls:


set linesize 100
set pagesize 100
SELECT * FROM
(SELECT substr(sql_text,1,40) sql,
        parse_calls, executions, hash_value,address
   FROM V$SQLAREA
  WHERE parse_calls > 1000
 ORDER BY parse_calls DESC)
WHERE rownum  <=10
;

Published by

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.