首页 > 代码库 > Oraclet提交提示Record is locked by another user错误
Oraclet提交提示Record is locked by another user错误
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错误
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。