首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle查寻锁定表信息

2012-07-15 
oracle查找锁定表信息oracle查找锁定表信息 ?--查找锁定表信息 select p.spid, ?????? c.object_name, ???

oracle查找锁定表信息

oracle查找锁定表信息

?

--查找锁定表信息
select p.spid,
?????? c.object_name,
?????? b.session_id,
?????? b.oracle_username,
?????? b.os_user_name
from v$process p, v$session a, v$locked_object b, all_objects c
where p.addr = a.paddr
?? and a.process = b.process
?? and c.object_id = b.object_id;

热点排行