当前位置: 首页最新资讯 手机数码 → oracle提示资源正忙怎么解决?oracle资源正忙解决方法

oracle提示资源正忙怎么解决?oracle资源正忙解决方法

更多

怎么解决ORA-00054资源正忙,要求指定NOWAIT这样的问题?以下是解决方法,为朋友们做个参考。

解决方法:

1、通过上句查找出已被锁定的数据库表及相关的sid、serial#及spid

select object_name as 对象名称,s.sid,s.serial#,p.spid as 系统进程号

from v$locked_object l , dba_objects o , v$session s , v$process p

where l.object_id=o.object_id and l.session_id=s.sid and s.paddr=p.addr;

oracle 10g 客户端
5.0
类别: 网络相关    大小:35.1M    语言: 中文
查看详细信息 >>

2、在数据库中灭掉相关session

alter system kill session 'sid,serial#';--sid及serial#为第一步查出来的数据

分类: oracle

oracle某用户下所有表

select * from dba_tables where owner in ('LIS');

或者当前用户

select * from user_tables;

热门评论
最新评论
昵称:
表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
字数: 0/500 (您的评论需要经过审核才能显示)