Rebuilding the spatial index of a layer changes the original SRID used while registering it with ArcSDE using 'sdelayer -o register' command and by specifying custom SRID.
最後に公開された状態: August 25, 2014ArcSDE/Enterprise Geodatabase
Drop and recreate the spatial index using SQL commands in Oracle:drop index spatial_index FORCE;CREATE index sa_index ON sensitive_areas (zone) INDEXTYPE IS sde.st_spatial_indexPARAMETERS('st_srid=100000 st_grids=6,0,0');