首页 > 数据库 > oracle

Oracle中查看引起Session阻塞的2个脚本分享

admin oracle 2022-02-09 21:59:43 Oracle   查看Session阻塞脚本"

用户A执行删除,但是没有提交。

复制代码 代码如下:
SQL> delete from test where object_id<10;

已删除8行。

用户B执行删除或者更新id<10的记录,则被阻塞。

复制代码 代码如下:
SQL> update test set flag='N' where object_id<10;

遇到这种阻塞,首先需要确定问题。可以使用以下脚本。

复制代码 代码如下:
select t2.username,t2.sid,t2.serial#,t2.logon_time
from v$locked_object t1,v$session t2
where t1.session_id=t2.sid order by t2.logon_time;

结果如下:

复制代码 代码如下:
USERNAME                              SID    SERIAL# LOGON_TIME
------------------------------ ---------- ---------- --------------
LIHUILIN                               14         87 09-11月-13
LIHUILIN                              139        655 09-11月-13

或者使用

复制代码 代码如下:
select
(select username from v$session where sid=a.sid) blocker,
a.sid,' is blocking ',
(select username from v$session where sid=b.sid) blockee,
b.sid
from v$lock a,v$lock b
where a.block=1 and b.request>0 and a.id1=b.id1 and a.id2=b.id2;

结果如下:

复制代码 代码如下:
BLOCKER                               SID 'ISBLOCKING'  BLOCKEE                               SID
------------------------------ ---------- ------------- ------------------------------ ----------
LIHUILIN                               14  is blocking  LIHUILIN                              139

Kill引起阻塞的Session

复制代码 代码如下:
select 'alter system kill session '''||sid||','||serial#||''';' cmd from v$session where username='LIHUILIN' and sid=14;

结果如下:

复制代码 代码如下:
CMD
-----------------------------------------
alter system kill session '14,87';

最后执行alter system命令,阻塞解除。

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/shujuku/oracle/98991.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持