当前位置:Gxlcms > 数据库问题 > 查看oracle是否有表被锁

查看oracle是否有表被锁

时间:2021-07-01 10:21:17 帮助过:4人阅读

===================================

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;

查看oracle是否有表被锁

标签:

人气教程排行