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

Oraclet提交提示Record is locked by another user错误

时间:2014-11-08 15:11:17      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   ar   sp   div   on   art   问题   

http://blog.csdn.net/alifel/article/details/4324338下午修改oracle datebase中的字段时,提示"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 ‘151,14678‘;--查看表大小

 

运行以上命令后,就可以解决此问题

Oraclet提交提示Record is locked by another user错误

标签:blog   http   io   ar   sp   div   on   art   问题   

原文地址:http://www.cnblogs.com/svennee/p/4083346.html

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