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.