如何查看当前ORACLE数据库里面锁的情况 (数据库记录锁 oracle)
用如下语句查询锁死的表:
select p.spid,
a.serial#,
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;
其中object_name就是被锁的表名,如图: