If the operating system is a French or German version of Windows, copy/paste point feature class from file geodatabase to ArcSDE 9.3SP1/9.3.1 with defaults dbtune keyword (ST_GEOMETRY) fails with an error message about creating spatial index.
上次发布: August 25, 2014ArcSDE/Enterprise Geodatabase
漏洞 ID 编号
NIM049372
已提交
October 2, 2009
上次修改时间
April 28, 2025
适用范围
ArcSDE/Enterprise Geodatabase
找到的版本
9.3.1
修正版本
9.4
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
Applying this VBA code to the direct connect connection to ArcSDE repository work :Public Sub ApplySQLOrderToWorkspace() Dim oGxApp As IGxApplication Set oGxApp = Application Dim oGXObj As IGxObject Set oGXObj = oGxApp.SelectedObject Dim oName As IName Set oName = oGXObj.InternalObjectName If TypeOf oGXObj Is IGxDatabase Then Dim oGxDatabase As IGxDatabase Set oGxDatabase = oGXObj Dim StrSQLOrder As String StrSQLOrder = InputBox("Ordre SQL à insuffler à la base", "SQL", "alter session set NLS_NUMERIC_CHARACTERS = "". """) Dim oSDEWorkspace As IWorkspace Set oSDEWorkspace = oGxDatabase.Workspace oSDEWorkspace.ExecuteSQL StrSQLOrder End IfEnd Sub