... arcpy.FeatureClassToFeatureClass_conversion (input_ws + "\\" + fc, output_ws, fc_name) ...
... # Set config keyword to SDO_GEOMETRY for feature class with type LINE or POINT arcpy.FeatureClassToFeatureClass_conversion (input_ws + "\\" + fc, output_ws, fc_name, "","", "SDO_GEOMETRY") ...
I don't know what else might be going wrong, but in eighteen years of ArcSDE administration,I have only once seen a layer that needed three levels of indexing (and its performancewas so awful we removed the features that forced the third level of indexing). You shouldNOT ever add spatial indexes at the minimum interval unless the data really is distributedso that 1+ million rows are exactly three times as large as the other 1+ million rows.The easiest way to eliminate spatial index size from possible error status is to choose ONEindex level that is at least 1/2 as large as the gap between the coordref origin and thecenter of the data envelope (e.g., with decimal degrees and a -400,400 origin, choosea grid size of 400 -- that is, {400,0,0}). Then you can move on to the storage in the SDEtablespace and whatever other errors which may be appearing in your database logs.- V
The default geometry storage type changed between 9.3 and 10.1, which is probablyrelated to your issue
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.