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
漏洞 ID 编号
NIM056659
已提交
April 23, 2010
上次修改时间
April 2, 2025
适用范围
ArcSDE/Enterprise Geodatabase
找到的版本
10.0
修正版本
N/A
状态
Fixed
此漏洞已得到修复。 有关详细信息,请参阅“版本修复”和“其他信息”(如果适用)。
解决办法
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