查询和删除 oracle 数据库中 锁死的表

查询:


select b.username,b.sid,b.serial#,logon_time
from v$locked_object a,v$session b
where a.session_id = b.sid order by b.logon_time;



解锁:

alter system kill session 'sid,serial#,';

你可能感兴趣的:(数据库,Oracle解锁)