Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3672836
  • 博文数量: 715
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7745
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(715)

文章存档

2023年(75)

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

2022-02-27 19:10:41


  1. 如果遇到以下异常
  2. ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired

 找出导致问题的原因
  1. col object for A30
  2. col object_type for A12
  3. col serial# for 999999999
  4. col osuser for A15
  5. col lock_mode for A30
  6. col username for A15

  7. select
  8.    c.owner || '.' || c.object_name object,
  9.    c.object_type,
  10.    DECODE(a.locked_mode, 0, 'NONE'
  11.            , 1, '1 - Null'
  12.            , 2, '2 - Row Share Lock'
  13.            , 3, '3 - Row Exclusive Table Lock.'
  14.            , 4, '4 - Share Table Lock'
  15.            , 5, '5 - Share Row Exclusive Table Lock.'
  16.            , 6, '6 - Exclusive Table Lock'
  17.            , locked_mode, ltrim(to_char(locked_mode,'990'))) lock_mode,
  18.    b.inst_id as node,
  19.    b.sid,
  20.    b.serial#,
  21.    b.status,
  22.    b.username,
  23.    b.osuser
  24. from
  25.    gv$locked_object a ,
  26.    gv$session b,
  27.    dba_objects c
  28. where b.sid = a.session_id
  29. and a.object_id = c.object_id
  30. and a.inst_id=b.inst_id;


阅读(812) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~