文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

列出对象锁(lock)信息及其被杀的会话(sid,serial#)信息

2024-04-02 19:55

关注
check_lock.sql脚本 

列出对象锁(lock)信息及其被杀的会话(sid,serial#)信息

set linesize 132 pagesize 66 
break on Kill on username on terminal 
column Kill heading 'Kill String' format a13 
column res heading 'Resource Type' format 999 
column id1 format 9999990 
column id2 format 9999990 
column lmode heading 'Lock Held' format a20 
column request heading 'Lock Requested' format a20 
column serial# format 99999 
column username  format a10  heading "Username" 
column terminal heading Term format a6 
column tab format a35 heading "Table Name" 
column owner format a9 
column Address format a18 
column ctime heading "Seconds"
select	nvl(S.USERNAME,'Internal') username, 
	nvl(S.TERMINAL,'None') terminal, 
	L.SID||','||S.SERIAL# Kill, 
	U1.NAME||'.'||substr(T1.NAME,1,20) tab, 
	decode(L.LMODE,1,'No Lock', 
		2,'Row Share', 
		3,'Row Exclusive', 
		4,'Share', 
		5,'Share Row Exclusive', 
		6,'Exclusive',null) lmode, 
	decode(L.REQUEST,1,'No Lock', 
		2,'Row Share', 
		3,'Row Exclusive', 
		4,'Share', 
		5,'Share Row Exclusive', 
		6,'Exclusive',null) request,
        l.ctime
from	V$LOCK L,  
	V$SESSION S, 
	SYS.USER$ U1, 
	SYS.OBJ$ T1 
where	L.SID = S.SID  
and	T1.OBJ# = decode(L.ID2,0,L.ID1,L.ID2)  
and	U1.USER# = T1.OWNER# 
and	S.TYPE != 'BACKGROUND' 
order by 1,2,5 
/ 

会话1:

以scott用户登录创建一个表t1

[root@Oel_10G ~]# su - oracle
[oracle@Oel_10G ~]$ sqlplus scott/oracle

SQL> create table t1 (i int);            

Table created.

SQL> insert into t1 values(1);

1 row created.

SQL> commit;

Commit complete.

在会话1中给t1加一个锁

SQL> select * from  t1 for update;

         I
----------
         1



会话 2:

在会话2中更新t1表的一行, 由于t1表中有Row Exclusive锁,此时会话2获取不到锁暂时为挂起状态

[root@Oel_10G ~]# su - oracle
[oracle@Oel_10G ~]$ sqlplus scott/oracle
SQL> update t1 set i=3 where i=1;


会话 3:

在会话3中更新t1表的一行, 由于t1表中有Row Exclusive锁,此时会话3获取不到锁暂时为挂起状态

[root@Oel_10G ~]# su - oracle
[oracle@Oel_10G ~]$ sqlplus scott/oracle
SQL> update   t1 set i=5 where i=1;


会话 4:

新开一个会话,以sys登陆,执行lock_check.sql查看相关对象锁信息

[root@Oel_10G ~]# su - oracle
[oracle@Oel_10G ~]$ sqlplus / as  sysdba

SQL>@check_lock.sql

Username   Term   Kill String   Table Name                          Lock Held            Lock Requested          Seconds
---------- ------ ------------- ----------------------------------- -------------------- -------------------- ----------
SCOTT      pts/1  525,891       PUBLIC.V$SQLAREA_PLAN_HASH          Exclusive                                        108
                                SCOTT.T1                            Row Exclusive                                    108
SCOTT      pts/2  544,8727      SCOTT.T1                            Row Exclusive                                     72
                                PUBLIC.V$SQLAREA_PLAN_HASH                               Exclusive                    72
SCOTT      pts/3  522,5542      SCOTT.T1                            Row Exclusive                                      6
                                PUBLIC.V$SQLAREA_PLAN_HASH                               Exclusive                     6

6 rows selected.

执行脚本后,结果列出表t1相关对象及锁信息,会话1持有t1的行独占锁,会话2与会话3都在请求Exclusive锁


现在我们kill掉scott用户下sid,serial#为(522,5542)的会话

SQL> alter system kill session '522,5542';

System altered



在会话3中可以看到(sid,serial#)(522,5542)被杀掉

SQL> update   t1 set i=5 where i=1;
update   t1 set i=5 where i=1
         *
ERROR at line 1:
ORA-00028: your session has been killed


在会话4中继续执行check_lock.sql

SQL>@check_lock.sql

Username   Term   Kill String   Table Name                          Lock Held            Lock Requested          Seconds
---------- ------ ------------- ----------------------------------- -------------------- -------------------- ----------
SCOTT      pts/1  525,891       PUBLIC.V$SQLAREA_PLAN_HASH          Exclusive                                        388
                                SCOTT.T1                            Row Exclusive                                    388
SCOTT      pts/2  544,8727      SCOTT.T1                            Row Exclusive                                    352
                                PUBLIC.V$SQLAREA_PLAN_HASH                               Exclusive                   352


此时,会话3已被***


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯