2026-03-12 20:23:15
This commit is contained in:
25
vdh/top_statements_by_hard_parse_time.sql
Normal file
25
vdh/top_statements_by_hard_parse_time.sql
Normal file
@@ -0,0 +1,25 @@
|
||||
column avg_hard_parse_time_ms format 9G999G990D00
|
||||
|
||||
select
|
||||
sql_id,
|
||||
plan_hash_value,
|
||||
executions,
|
||||
parse_calls,
|
||||
avg_hard_parse_time_ms
|
||||
from
|
||||
( select
|
||||
sql_id,
|
||||
plan_hash_value,
|
||||
executions,
|
||||
parse_calls,
|
||||
avg_hard_parse_time/1000 avg_hard_parse_time_ms
|
||||
from
|
||||
v$sqlstats
|
||||
order by
|
||||
avg_hard_parse_time desc
|
||||
)
|
||||
where
|
||||
rownum <= 20
|
||||
order by
|
||||
plan_hash_value
|
||||
;
|
||||
Reference in New Issue
Block a user