Home  >  Article  >  Database  >  解决ORA-14450:试图访问已经在使用的事务处理临时表

解决ORA-14450:试图访问已经在使用的事务处理临时表

WBOY
WBOYOriginal
2016-06-07 17:31:482114browse

在开发使用过程中,一个存储过程用到表TMP_DA_GMS,允许程序的时候报错,后台查询到错误原因是因为表里有个字段需要设置为可以为N

在开发使用过程中,一个存储过程用到表TMP_DA_GMS,允许程序的时候报错,后台查询到错误原因是因为表里有个字段需要设置为可以为NULL,,在PL_SQL中直接编写语句

alter table TMP_DA_GMS modify brid NUMBER(11) null;


执行,报错“ORA-14450:试图访问已经在使用的事务处理临时表”;

有一个解决办法是去重新启动下Oracle服务,但是这个方法不可取,用户正在使用时,是不能随便重启数据库服务的,后来在网上找到了处理办法,但是只告诉怎么

杀死导致死锁的会话,怎么找关于这个表的session却没有提到,这里做个说明:

--找到表对象

select * from dba_objects where object_name='TMP_DA_GMS'
--找到该对象导致的锁的Session会话,并编写语句
select  'alter system kill session '''||SID||','||SERIAL#||''';' from V$session  where SID in ( select sid from v$enqueue_lock t where t.type='TO' and  id1='99879' )
--执行生成后的SQL语句解除死锁

推荐阅读:

SPFILE 错误导致数据库无法启动(ORA-01565)

ORA-01172、ORA-01151错误处理

ORA-00600 [2662]错误解决

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn