Oracle 数据库 Record is locked by another user 问题解决办法
Posted wblearn
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle 数据库 Record is locked by another user 问题解决办法相关的知识,希望对你有一定的参考价值。
在操作ORACLE数据库的时候,由于执行完,没有COMMIT,多次修改,后来导致那张表被锁住,当编辑时就会出现这个信息,record is locked by another user!
当出现这种情况的时候,只要操作下面几个步骤就可以解锁了。
1.查锁
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;
2.解锁(KILL)
执行命令alter system kill session ‘sid,serial#’
alter system kill session ‘2001,25423’;
以上是关于Oracle 数据库 Record is locked by another user 问题解决办法的主要内容,如果未能解决你的问题,请参考以下文章
关于 oracle record is locked by another user 问题解决办法
oracle遇到的锁异常,oralce record is locked by another user
oracle 10问题 SYSTEM用户登录时 说 the account is locked
Oracle登录报错ORA-28000: the account is locked