Oracle 抓取指定SQL的执行计划以及访问的表以及索引统计信息(二步曲)
查询正在执行的SQL
set lines 200 pages 0;
SELECT b.inst_id,b.sid oracleID,
b.username ,
b.serial#,
spid ,
b.sql_id,
sql_fulltext,
b.machine,
b.EVENT
FROM gv$process a, gv$session b, gv$sql c
WHERE a.addr = b.paddr
AND b.sql_hash_value = c.hash_value
and a.inst_id=1
and b.inst_id=1
and c.inst_id=1
and b.status='ACTIVE';
-- 适当增加需要的过滤schema等
执行脚本
-- https://github.com/DataJoewan/DBOS/tree/main/ahf_sql
-- fa_sqlhc.sql
-- fa_sqlhc_sta.sql
-- sqldx.sql
@fa_sqlhc.sql T sql_id