2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

View 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
;