问题现象:

查看oracle是否有表被锁

 

解决方法:

select sid,serial#,program,terminal,username,b.object_id,c.object_name
  from v$session a, v$locked_object b, dba_objects c
 where a.sid = b.session_id
   and b.object_id = c.object_id;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2021-11-29
  • 2021-11-29
  • 2021-05-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2022-02-01
  • 2021-11-29
相关资源
相似解决方案