欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Oracle中查询被锁定的表

程序员文章站 2022-06-08 11:18:03
...

Oracle中查询被锁定的表 select --l.*,o.owner object_owner, o.object_Name,mac.status,mac.oSUSEr,mac.machine trunc(l.

Oracle中查询被锁定的表

select --l.*,o.owner object_owner, o.object_Name,mac.status,mac.oSUSEr,mac.machine
trunc(l.ctime/60,0) mm,(l.ctime/60-trunc(l.ctime/60,0))*60 ss,
l.sid,mac.SERIAL# serial,l.type,mac.osuser,mac.machine,mac.USERNAME user_, o.object_Name,mac.status,mac.logon_time,mac.program
--,mac.*,o.*
from (select l.* from v$lock l where l.type = 'TM') l,
sys.all_objects o, sys.v_$session mac
where l.id1 = o.object_id
and l.sid = mac.sid
--and o.object_name = 'SHOP_BACK_ARRANGE_TAB'
order by mac.machine,mm*60+ss;

Oracle中查询被锁定的表