怎么解决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 客户端 绿色版大小: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;