首页 > 数据库技术 > 详细

oracle之报错:ORA-00054: 资源正忙,要求指定 NOWAIT

时间:2014-05-15 16:33:38      阅读:462      评论:0      收藏:0      [点我收藏+]

SQL> conn scott/tiger@vm_database
Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0
Connected as scott

。。。。。。

SQL> drop table student2;

drop table student2

ORA-00054: 资源正忙, 但指定以 NOWAIT 方式获取资源, 或者超时失效
=========================================================

解决方法如下:

=========================================================

SQL> select session_id from v$locked_object;

SESSION_ID
----------
142

SQL> SELECT sid, serial#, username, osuser FROM v$session where sid = 142;

SID SERIAL# USERNAME OSUSER
---------- ---------- ------------------------------ ------------------------------
142 38 SCOTT LILWEN

SQL> ALTER SYSTEM KILL SESSION ‘142,38‘;

System altered

SQL> conn scott/tiger@vm_database
Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0
Connected as scott

SQL> drop table student2;

Table dropped

 

oracle之报错:ORA-00054: 资源正忙,要求指定 NOWAIT,布布扣,bubuko.com

oracle之报错:ORA-00054: 资源正忙,要求指定 NOWAIT

原文:http://www.cnblogs.com/tina-smile/p/3726567.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!