Within Oracle RAC environment, pipes are not purged from memory following reset of sequence triggered by truncate.
上次发布: August 25, 2014ArcSDE/Enterprise Geodatabase
漏洞 ID 编号
NIM082952
已提交
July 20, 2012
上次修改时间
April 2, 2025
适用范围
ArcSDE/Enterprise Geodatabase
找到的版本
10.0
操作系统
Windows OS
操作系统版本
2003
修正版本
N/A
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
Modify the script to drop the specific pipe for the table in question:DECLARECURSOR pipe_list IS SELECT name FROM v$db_pipes;pipe_result NUMBER;BEGINFOR del_pipes IN pipe_list LOOPpipe_result := DBMS_PIPE.REMOVE_PIPE(del_<a href="http://pipes.name" target="_blank">pipes.name</a>);END LOOP;END;/