select
t.sql_id,
t.sql_text,
s.plan_hash_value,
s.optimizer_cost,
s.executions_total,
s.elapsed_time_total,
s.disk_reads_total,
s.buffer_gets_total
from
dba_hist_sqlstat
s,
dba_hist_sqltext
t
where
s.sql_id=t.sql_id
and
t.sql_text
like'%存储过程名称%';
没有想到其他好办法,确实不太好查了,把存储过程当作sql来查找吧。
温馨提示:内容为网友见解,仅供参考