Recalculating the layer envelope with 'sdelayer -o alter -E calc' does not update the extent for SQL Server Spatial Type feature class after records have been inserted with SQL.
最後に公開された状態: August 25, 2014ArcSDE/Enterprise Geodatabase
Run sdelayer –o alter –E xmin,ymin,xmax,ymax explicitly, rather than the CALC option. The extents of a POINT GEOGRAPHY layer can be calculated using the following query:select MIN (Shape.Long) as MinX, MIN(Shape.Lat) as MinY, MAX(Shape.Long) as MaxX, MAX(Shape.Lat) as MaxY from linus.dbo.TESTPT