码迷,mamicode.com
首页 > 数据库 > 详细

【Oracle】查看被锁的表及解除锁

时间:2020-07-28 17:10:59      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:oracle   锁对象   and   machine   session   from   查询   name   被锁   

--查看被锁对象
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 ‘24,111‘; (其中24,111分别是上面查询出的sid,serial#

【Oracle】查看被锁的表及解除锁

标签:oracle   锁对象   and   machine   session   from   查询   name   被锁   

原文地址:https://www.cnblogs.com/learnfish/p/13391384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!