因为表kol_xx_fin050_temp 为临时表,而且有其他session正在使用。
处理步骤:
1、先从 dba_objects / user_objects中查询到该表的object_id:
select object_id from dba_objects where object_name=upper(‘kol_xx_fin050_temp‘);
2、根据查到的object_id知道使用该表的session:
select * from v$lock where id1=&object_id;
3、在从v$session视图中查到该session的sid和serial#:
select * from v$session where sid=331;
4、杀掉这些进程:
alter system kill session ‘sid,serial#’;
搜索此文相关文章:ORA-14452:试图创建,更改或删除正在使用的临时表中的索引
时间: 2024-10-08 12:12:06