Oracle 删除其他Session中的临时表

前端之家收集整理的这篇文章主要介绍了Oracle 删除其他Session中的临时表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

因为表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#’;

原文链接:https://www.f2er.com/oracle/212553.html

猜你在找的Oracle相关文章