檢視引起阻塞的Session

壹頁書發表於2013-11-09
使用者A執行刪除,但是沒有提交。
SQL> delete from test where object_id<10;
已刪除8行。

使用者B執行刪除或者更新id<10的記錄,則被阻塞。
SQL> update test set flag='N' where object_id<10;

遇到這種阻塞,首先需要確定問題。可以使用以下指令碼。
  1. select t2.username,t2.sid,t2.serial#,t2.logon_time
  2. from v$locked_object t1,v$session t2
  3. 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

或者使用

  1. select
  2. (select username from v$session where sid=a.sid) blocker,
  3. a.sid,' is blocking ',
  4. (select username from v$session where sid=b.sid) blockee,
  5. b.sid
  6. from v$lock a,v$lock b
  7. 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

  1. 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命令,阻塞解除。





來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29254281/viewspace-776209/,如需轉載,請註明出處,否則將追究法律責任。

相關文章