重庆思庄Oracle、Redhat认证学习论坛

标题: 查询阻塞会话的语句与被阻塞的语句 [打印本页]

作者: 刘泽宇    时间: 2023-4-2 17:41
标题: 查询阻塞会话的语句与被阻塞的语句
select distinct b.sql_id,b.sample_time,b.user_id,c.blocked_sql_id
from DBA_HIST_ACTIVE_SESS_HISTORY b,
(select a.sql_id as blocked_sql_id,
a.blocking_session,
a.blocking_session_serial#,
count(a.blocking_session)
from DBA_HIST_ACTIVE_SESS_HISTORY a
where event like '%enq: TX - row lock contention%'
and snap_id between snap_id1 and sanp_id2
group by a.blocking_session, a.blocking_session_serial#,a.sql_id
order by 3 desc) c
where b.session_id = c.blocking_session
and b.session_serial# = c.blocking_session_serial#
and b.snap_id between snap_id1 and snap_id2;






欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2