标签: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 锁对象 and machine session from 查询 name 被锁
原文地址:https://www.cnblogs.com/learnfish/p/13391384.html