oracle 锁表查看与解锁
Posted Flink菜鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle 锁表查看与解锁相关的知识,希望对你有一定的参考价值。
查看被锁的表:
select l.session_id,o.owner,o.object_name from v$locked_object l,dba_objects o where l.object_id=o.object_id;
查看被锁表的serial:
select t2.username,t2.sid,t2.serial#,t2.logon_time from v$locked_object t1,v$session t2 where t1.session_id=t2.sid order by t2.logon_time;
kill 锁表session:
alter system kill session ‘sid,serial#‘;
以上是关于oracle 锁表查看与解锁的主要内容,如果未能解决你的问题,请参考以下文章