当前位置:Gxlcms > 数据库问题 > oracle 记录被别的用户锁住

oracle 记录被别的用户锁住

时间:2021-07-01 10:21:17 帮助过:6人阅读

找出数据库的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;

 杀死该session 

alter system kill session ‘sid,serial#‘

 

oracle 记录被别的用户锁住

标签:

人气教程排行