>데이터 베이스 >MySQL 튜토리얼 >删除临时表报ORA-14452错误解决方法

删除临时表报ORA-14452错误解决方法

WBOY
WBOY원래의
2016-06-07 16:48:301600검색

跑存储过程,里面有张临时表。跑完后打算删除临时表报ORA-14452:An attempt was made to create, alter or drop an index on te

跑存储过程,里面有张临时表。跑完后打算删除临时表报ORA-14452:An attempt was made to create, alter or drop an index on temporary table which is already in use

解决方法:

实际上要么就是等,等到资源释放。要么就是删除sid。

1、查询object_id

select object_id from dba_objects where object_name=UPPER('TBL_1');

-------

1199531

2、根据object_id查出session

select sid from v$lock where id1=1199531;

--------

186

3、根据sid查询SERIAL#

select serial# from v$session where sid=186;

----

57893

4、

alter system kill session '186,57893';

本文永久更新链接地址:

linux

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.