oracle查看锁表,解锁

前端之家收集整理的这篇文章主要介绍了oracle查看锁表,解锁前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

查看被锁

select object_name,machine,s.sid,s.serial#
from v$locked_object l,dba_objects o,v$session s
where l.object_id = o.object_id and l.session_id=s.sid;

解锁

alter system kill session '128,39113'; --(其中24,111分别是上面查询出的sid,serial#)
原文链接:https://www.f2er.com/oracle/210096.html

猜你在找的Oracle相关文章