Oracle 锁表与解锁

--查看锁表
select a.object_name,b.session_id,c.serial#,c.program,c.username,c.command,c.machine,c.lockwait
from all_objects a,v$locked_object b,v$session c where a.object_id=b.object_id and c.sid=b.session_id;
--解锁
alter system kill session'session_id,serial#';
--例如
alter system kill session'203,36065';

posted @ 2018-07-27 10:29  pretend_smile  阅读(54)  评论(0)    收藏  举报