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
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