arcsde_database_startup.sql execution causes post-installation to fail with ORA-12704 when start_token characterset conflicts with expected NVARCHAR2.
上次发布: August 25, 2014ArcSDE/Enterprise Geodatabase
漏洞 ID 编号
NIM062872
已提交
November 17, 2010
上次修改时间
April 2, 2025
适用范围
ArcSDE/Enterprise Geodatabase
找到的版本
10.0
操作系统
Windows OS
操作系统版本
2008 64 Bit
修正版本
N/A
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
Drop the trigger the arcsde_database_startup.sql script creates (drop trigger sys.arcsde_database_startup;) and run sdesetup -o install.If the logic within the script was executed outside of the trigger the pipes will persist within the instance until the database instance is restarted or the pipes are removed via a script such as:DECLARE l_result INTEGER;BEGIN -- Explicit public pipe. l_result := DBMS_PIPE.remove_pipe(pipename => 'ARCSDE_STARTUPPIPE'); -- Explicit private pipe. l_result := DBMS_PIPE.remove_pipe(pipename => 'ARCSDE_STARTUPCONFIRMPIPE');END;/