Unable to copy-paste a particular feature class in ArcSDE for SQL Server database with ‘GEOGRAPHY’ keyword.
上次发布: August 25, 2014ArcSDE/Enterprise Geodatabase
漏洞 ID 编号
NIM080819
已提交
May 15, 2012
上次修改时间
April 2, 2025
适用范围
ArcSDE/Enterprise Geodatabase
找到的版本
10.0
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
Microsoft limit.
解决办法
1. Load the bad layer into a GEOMETRY feature class (Named PFGeom bellow).2. Update the Geometry of the bad shape using the Reduce method. This is similar to a Generalize operation.update PFGeom set shape = geometry::STGeomFromWKB(shape.Reduce(0.00001).STAsBinary(), shape.STSrid) where objectid = ######## would be the objectid of the bad shape (or whatever where clause is going to get you just the single bad shape that is failing)This performs a tiny reduction in the number of vertices.3. Using ArcCatalog, copy/paste the PFGeom feature class into the new Geography feature class.