锁的事情说一说-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502492
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2023-06-19 11:41:02


  1. 必备技能,对于锁平时不阻塞也要排查的话,那就先乱查一通

  2. --当前全部锁
  3. set lin 200 pages 500
  4. col username for a22
  5. col object_name for a22
  6. select a.sid,b.serial#,decode(a.type,'tm',c.object_name,null) object_name,a.type,b.username,
  7.  decode(a.lmode,
  8.    0,'0:none',
  9.    1,'1:null',
  10.    2,'2:ss(row-share)',
  11.    3,'3:sx(row-x)',
  12.    4,'4:s(share)',
  13.    5,'5:ssx(s/row-x)',
  14.    6,'6:x(exclusive)') lmode,
  15.  decode(a.request,
  16.    0,'0:none',
  17.    1,'1:null',
  18.    2,'2:ss(row-share)',
  19.    3,'3:sx(row-x)',
  20.    4,'4:s(share)',
  21.    5,'5:ssx(s/row-x)',
  22.    6,'6:x(exclusive)') request,
  23.    a.ctime,a.block
  24.  from v$lock a,v$session b ,dba_objects c where b.sid=a.sid and c.object_id()=a.id1;

  25. col type for a4
  26. col name for a25
  27. col description for a60
  28. select type,name,description from v$lock_type where type=upper('&type');

  29. col oracle_username for a22
  30. col os_user_name for a22
  31. select xidusn,object_id,session_id,oracle_username,os_user_name,process from v$locked_object;

  32. col object_name for a22
  33. select d.object_id, substr(object_name,1,20) object_name, l.session_id, l.oracle_username, l.locked_mode,xidusn,xidslot,xidsqn from v$locked_object l, dba_objects d where d.object_id=l.object_id;

  34. col username for a22
  35. col machine for a25
  36. col program for a35
  37. select username,lockwait,status,machine,program from v$session where sid in (select session_id from v$locked_object);

  38. col sql_text for a60
  39. select sql_id,sql_text from v$sql where hash_value in (select sql_hash_value from v$session where sid in (select session_id from v$locked_object));

  40. select waiting_session, holding_session, lock_type, mode_held from dba_waiters;  --慎用,可能返回很多


lmode类型说明:

阅读(126) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图