oracle 跟踪

SELECT * FROM v$sql  where last_active_time>TO_DATE('2019-7-18 13:17:00','yyyy-mm-dd hh24:mi:ss')
ORDER BY LAST_ACTIVE_TIME DESC;

select
s.sql_text,
b.name,b.position,b.dup_position,
b.value_string,s.LAST_ACTIVE_TIME,s.SQL_FULLTEXT
from v$sql s,v$sql_bind_capture b
where s.last_active_time>TO_DATE('2019-7-18 13:17:00','yyyy-mm-dd hh24:mi:ss') and s.hash_value=b.hash_value
ORDER BY s.LAST_ACTIVE_TIME DESC,b.position;
原文地址:https://www.cnblogs.com/xiaobaidejiucuoben/p/13415754.html