GIS开发进阶之路(十四) ArcEngine打开cad文件的五种方法、ArcGIS Engine错误码

  1. ArcEngine打开cad文件的几种方法

    • 方法一、通过遍历CAD数据集,依次加载中点线面注记等图层,所加载的数据均为一个独立的图层。

         IWorkspaceFactory pWorkspaceFactory;
        IFeatureWorkspace pFeatureWorkspace;
        IFeatureLayer pFeatureLayer;
        IFeatureDataset pFeatureDataset;
        //打开CAD数据集
        pWorkspaceFactory = new CadWorkspaceFactoryClass();
        pFeatureWorkspace = (IFeatureWorkspace)pWorkspaceFactory.OpenFromFile(directoryPath, 0);
        //打开一个要素集
        pFeatureDataset = pFeatureWorkspace.OpenFeatureDataset(fileName);
        //IFeaturClassContainer可以管理IFeatureDataset中的每个要素类
        IFeatureClassContainer pFeatureClassContainer = (IFeatureClassContainer)pFeatureDataset;
        //对CAD文件中的要素进行遍历处理
        for (int i = 0; i < pFeatureClassContainer.ClassCount - 1; i++)
        {
        IFeatureClass pFeatureClass = pFeatureClassContainer.get_Class(i);
        if (pFeatureClass.FeatureType == esriFeatureType.esriFTAnnotation)
        {
        //如果是注记,则添加注记层
        pFeatureLayer = new CadAnnotationLayerClass();
        }
        else//如果是点、线、面,则添加要素层
        {
        pFeatureLayer = new FeatureLayerClass();
        pFeatureLayer.Name = pFeatureClass.AliasName;
        pFeatureLayer.FeatureClass = pFeatureClass;
        this.axmc_Main.Map.AddLayer(pFeatureLayer);
        this.axmc_Main.ActiveView.**();
        }
      
        }
      
    • 方法二、直接打开CAD数据的点线面注记等要素类,所加载的数据均为一个独立的图层。

         CadWorkspaceFactoryClass fac=new CadWorkspaceFactoryClass ();
         String filePath="E:\\cad";
         IFeatureWorkspace space=fac.OpenFromFile(filePath,0) as IFeatureWorkspace ;
         下面是打开FeatureClass的代码:
         //线
         IFeatureClass polyline =space.OpenFeatureClass("NewCAD.dwg:Polyline");  
         IFeatureLayer layer=new CadFeatureLayerClass ();
         layer.FeatureClass =polyline;
         //点
         IFeatureClass point=space.OpenFeatureClass ("NewCAD.dwg:Point");
         layer=new CadFeatureLayerClass ();
         layer.FeatureClass =point;
         //面  
         IFeatureClass polygon=space.OpenFeatureClass ("NewCAD.dwg:Polygon");
         ayer=new CadFeatureLayerClass();
         layer.FeatureClass =polygon;
         //注记  
         IFeatureClass anno=space.OpenFeatureClass ("NewCAD.dwg:Annotation");
         layer=new CadAnnotationLayerClass();
         layer.FeatureClass =anno;
      
    • 方法三、利用绘图空间直接加载CAD数据集,加载后各类型数据作为一个图层显示。

        IWorkspaceFactory pWorkspaceFactory = new CadWorkspaceFactoryClass();
        IWorkspace pWorkspace = pWorkspaceFactory.OpenFromFile(directoryPath, 0);
        //--定义一个CAD画图空间,并把上边打开的工作空间赋给它
        ICadDrawingWorkspace pCadDrawingWorkspace = pWorkspace as ICadDrawingWorkspace;
        //--定义一个CAD的画图数据集,并且打开上边指定的工作空间中一幅CAD图
        //--然后赋值给CAD数据集
        ICadDrawingDataset pCadDrawingDataset = pCadDrawingWorkspace.OpenCadDrawingDataset(fileName);
        //--通过ICadLayer类,把上边得到的CAD数据局赋值给ICadLayer类对象的
        //--CadDrawingDataset属性
        ICadLayer pCadLayer = new CadLayerClass();
        pCadLayer.CadDrawingDataset = pCadDrawingDataset;
        //--利用MapControl加载CAD层
        this.axmc_Main.Map.AddLayer(pCadLayer);
        this.axmc_Main.ActiveView.**();
      
    • 方法四、也是遍历CAD点线面,但是不用检查数据类型是否为注记。

         IWorkspaceFactory pWorkspaceFactory = new CadWorkspaceFactoryClass();
        IFeatureWorkspace pFeatureWorkspace = pWorkspaceFactory.OpenFromFile(directoryPath, 0) as IFeatureWorkspace;
        IFeatureDataset pFeatureDataset = pFeatureWorkspace.OpenFeatureDataset(fileName);
        IFeatureClassContainer pFeatureClassContainer = (IFeatureClassContainer)pFeatureDataset;
        for (int i = 0; i < pFeatureClassContainer.ClassCount - 1; i++)
        {
        IFeatureClass pFeatureClass = pFeatureClassContainer.get_Class(i);
        IFeatureLayer pFeatureLayer = new FeatureLayerClass();
        pFeatureLayer.FeatureClass = pFeatureClass;
        //ICadLayer pCadLayer = new CadLayerClass();
        //pCadLayer = pFeatureLayer as ICadLayer;
        this.axmc_Main.Map.AddLayer(pFeatureLayer);
        this.axmc_Main.ActiveView.**();
        }
      
    • 方法五、类似于方法三。

         //Add passed file to MapControl
        ICadDrawingDataset pCadDrawingDataset = GetCadDrawingDataset(directoryPath, fileName);
        if (pCadDrawingDataset == null) return;
        ICadLayer pCadLayer = new CadLayerClass();
        pCadLayer.CadDrawingDataset = pCadDrawingDataset;
        pCadLayer.Name = fileName;
        this.axmc_Main.AddLayer(pCadLayer, 0);
      
        /// <summary>
        /// 获取记录集
        /// </summary>
        /// <param name="directoryPath"></param>
        /// <param name="fileName"></param>
        /// <returns></returns>
        private ICadDrawingDataset GetCadDrawingDataset(string directoryPath, string fileName)
        {
        //Create a WorkspaceName object
        IWorkspaceName pWorkspaceName = new WorkspaceNameClass();
        pWorkspaceName.WorkspaceFactoryProgID = "esriDataSourcesFile.CadWorkspaceFactory";
        pWorkspaceName.PathName = directoryPath;
        //Create a CadDrawingName object
        IDatasetName pDatasetName = new CadDrawingNameClass();
        pDatasetName.Name = fileName;
        pDatasetName.WorkspaceName = pWorkspaceName;
        //Open the CAD drawing
        IName pName = (IName)pDatasetName;
        return (ICadDrawingDataset)pName.Open();
        }
      
  2. ArcGIS Engine错误码

    序号*错误代码**错误描述**错误名称*
    0HRESULT:0x80040201“Failed to load a resource (string, icon, bitmap, etc).”LOADING_RESOURCE
    1.HRESULT:0x80040202The index passed was not within the valid range.INDEX_OUT_OF_RANGE
    2.HRESULT:0x80040203The operation is not supported by this implementation.NOT_SUPPORTED
    3.HRESULT:0x80040204There is not enough storage space to complete the operation.NOT_ENOUGH_SPACE
    4.HRESULT:0x80040205The user does not have permission to execute the operation.NO_PERMISSION
    5.HRESULT:0x80040206“Signals that an implementation specific error has occurred and that the client should inspect the error object for additional errors. For example, SDE API errors.”IMPLEMENTATION
    6.HRESULT:0x80040207An invalid SQL statement was used.INVALID_SQL
    7.HRESULT:0x80040208A networking error occurred.NETWORK
    8.HRESULT:0x80040209A date conversion error has occurred.DATE_CONVERSION
    9.HRESULT:0x8004020AThe object has been deleted and is no longer valid.OBJECT_IS_DELETED
    10.HRESULT:0x8004020BThe workspace is of the wrong type.WORKSPACE_NOT_COMPATIBLE
    11.HRESULT:0x8004020CModifications to the object are not allowed.OBJECT_IS_READONLY
    12.HRESULT:0x8004020DObject is busy.OBJECT_IN_USE
    13.HRESULT:0x8004020EMaximum number of objects reached.OBJECT_MAX_REACHED
    14.HRESULT:0x8004020FObject is currently locked.OBJECT_IS_LOCKED
    15.HRESULT:0x80040210Invalid envelope encountered.INVALID_ENVELOPE
    16.HRESULT:0x80040211File read/write error occurred.FILE_IO
    17.HRESULT:0x80040212A product licensing error occurred.LICENSE_FAILURE
    18.HRESULT:0x80040213An underlying database error occurred.DBMS_ERROR
    19.HRESULT:0x80040214An error occurred trying to coerce data from one type to another.COERCING
    20.HRESULT:0x80040215A general data binding error occurred.BINDING
    21.HRESULT:0x80040216Cannot acquire a schema lock because of an existing lock.SCHEMA_LOCK_CONFLICT
    22.HRESULT:0x80040217Must be the owner to do this operation.MUST_BE_OWNER
    23.HRESULT:0x80040218Object has no schema locks.OBJECT_NOT_LOCKED
    24.HRESULT:0x80040219Connection to Esri OLE DB provider is invalid.ESRI_PROVIDER_CONNECT_INVALID
    25.HRESULT:0x8004021ASDE Connection dialog is cancelled.CONNECTION_CANCELLED
    26.HRESULT:0x8004021BThis release of the Geodatabase is not up to date.INVALID_RELEASE
    27.HRESULT:0x8004021CGeodatabase System Tables not found.NO_SYSTEM_TABLES
    28.HRESULT:0x8004021DConflicting connection parameters.CONNECT_PARAMETERS_CONFLICT
    29.HRESULT:0x8004021EGeodatabase FieldInfo system table inconsistent.FIELDINFO_SYSTEM_TABLE_INCONSISTENCY
    30.HRESULT:0x8004021FThe application is not licensed to edit this type of data .NO_EDIT_LICENSE
    31.HRESULT:0x80040220The application is not licensed to create or modify schema for this type of data.NO_SCHEMA_LICENSE
    32.HRESULT:0x80040221The application does not have the required license for this operation.NO_OPERATION_LICENSE
    33.HRESULT:0x80040222The current operation cannot be undone.OPERATION_CANNOT_BE_UNDONE
    34.HRESULT:0x80040223The current operation requires an edit operation.EDIT_OPERATION_REQUIRED
    35.HRESULT:0x80040224The reconcile operation cannot be undone.RECONCILE_CANNOT_BE_UNDONE
    36.HRESULT:0x80040225The object is not initialized.OBJECT_NOT_INITIALIZED
    37.HRESULT:0x80040226The integer requires a 64-bit representation.INTEGER_REQUIRES_64BITS
    38.HRESULT:0x80040227Syntax error.SYNTAX_ERROR
    39.HRESULT:0x80040228License not intialized.LICENSE_NOT_INITIALIZED
    40.HRESULT:0x80040229Maximum table size has been exceeded.TABLE_SIZE_EXCEEDED
    41.HRESULT:0x8004022ACannot access secured data.SECURED_DATA_NO_ACCESS
    42.HRESULT:0x8004022BAn SQL statement containing comment and/or semicolon was used.INVALID_SQLQUERY
    43.HRESULT:0x8004022CThe name is invalid.INVALID_NAME
    44.HRESULT:0x8004022DCannot acquire a lock.LOCK_CONFLICT
    45.HRESULT:0x8004022EUpgrade will need write access to the geodatabase to successfully complete.UPGRADE_NEEDS_WRITE_ACCESS
    46.HRESULT:0x8004022FFIDs in FIDSet must not be negative.NEGATIVE_FID
    47.HRESULT:0x80040230This version of the Geodatabase client is incompatible with the dataset and cannot open it.INCOMPATIBLE_CLIENT_VERSION
    48.HRESULT:0x80040231This functionality is only supported on a Geodatabase release of ArcGIS 10.0 or greater.NEW_SCHEMA_REQUIRED
    49.HRESULT:0x80040232The connection format cannot be made forward compatible.NON_FORWARD_COMPATIBLE_CONNECTION
    50.HRESULT:0x80040251The workspace is not connected.WORKSPACE_NOT_CONNECTED
    51.HRESULT:0x80040252The workspace is already connected.WORKSPACE_ALREADY_CONNECTED
    52.HRESULT:0x80040253The server was not found.SERVER_NOT_FOUND
    53.HRESULT:0x80040254“The server was found, but is not available at this time.”SERVER_NOT_AVAILABLE
    54.HRESULT:0x80040255The server does not allow anymore connections at this time.SERVER_MAX_CONNECTIONS
    55.HRESULT:0x80040256The user and/or password is invalid.USER_INVALID
    56.HRESULT:0x80040257The user does not have access to the workspace.USER_NOACCESS
    57.HRESULT:0x80040258The database was not found.DATABASE_NOT_FOUND
    58.HRESULT:0x80040259“The database was found, but is not available at this time.”DATABASE_NOT_AVAILABLE
    59.HRESULT:0x8004025AThe workspace already exists.WORKSPACE_ALREADY_EXISTS
    60.HRESULT:0x8004025BUnable to instantiate workspace extension component.WORKSPACE_EXTENSION_CREATE_FAILED
    61.HRESULT:0x8004025CUnable to initialize workspace extension.WORKSPACE_EXTENSION_INIT_FAILED
    62.HRESULT:0x8004025DFailed sending dataset created notification to workspace extension.WORKSPACE_EXTENSION_DATASET_CREATE_FAILED
    63.HRESULT:0x8004025EFailed sending dataset renamed notification to workspace extension.WORKSPACE_EXTENSION_DATASET_RENAME_FAILED
    64.HRESULT:0x8004025FFailed sending dataset deleted notification to workspace extension.WORKSPACE_EXTENSION_DATASET_DELETE_FAILED
    65.HRESULT:0x80040260Illegal duplicate workspace extension name.WORKSPACE_EXTENSION_DUP_NAME
    66.HRESULT:0x80040261Illegal duplicate workspace extension guid.WORKSPACE_EXTENSION_DUP_GUID
    67.HRESULT:0x80040262Altering workspace extension registration requires Geodatabase DBA priveleges.WORKSPACE_EXTENSION_NO_REG_PRIV
    68.HRESULT:0x80040263Workspace or data source is read only.WORKSPACE_READONLY
    69.HRESULT:0x80040264The dataset is not supported at the workspace level.DATASET_NOT_SUPPORTED_AT_WORKSPACE_LEVEL
    70.HRESULT:0x80040265Workspace does not support Keyset Table.WORKSPACE_NO_KEYSETTABLEMANAGER
    71.HRESULT:0x80040266Keyset table was not returned.WORKSPACE_NO_KEYSETTABLE
    72.HRESULT:0x80040267Returned Keyset id is invalid.WORKSPACE_INVALID_KEYSETID
    73.HRESULT:0x80040268A missing or bad connection property was encountered.WORKSPACEFACTORY_BAD_CONNECTIONPROPERTY
    74.HRESULT:0x80040269Workspace extensions are not supported.WORKSPACE_EXTENSION_NOT_SUPPORTED
    75.HRESULT:0x8004026AFailed sending dataset modified notification to workspace extension.WORKSPACE_EXTENSION_DATASET_MODIFY_FAILED
    76.HRESULT:0x8004026BWorkspace has no spatial type.WORKSPACE_NO_SPATIAL_TYPE
    77.HRESULT:0x8004026BThe historical marker already exists.HISTORICAL_MARKER_ALREADY_EXISTS
    78.HRESULT:0x80040301The dataset was not found.DATASET_NOT_FOUND
    79.HRESULT:0x80040302The dataset name is invalid.DATASET_INVALID_NAME
    80.HRESULT:0x80040303The dataset already exists.DATASET_ALREADY_EXISTS
    81.HRESULT:0x80040304Cannot rename the dataset with objects already open.DATASET_CANNOT_RENAME
    82.HRESULT:0x80040305Invalid dataset type.DATASET_INVALID_TYPE
    83.HRESULT:0x80040306Cannot delete the dataset.DATASET_CANNOT_DELETE
    84.HRESULT:0x80040307Cannot find the specified feature dataset extension type.DATASET_EXTENSION_TYPE_NOT_FOUND
    85.HRESULT:0x80040308The paste operation on the dataset is not supported in the target release of the Geodatabase.DATASET_PASTE_NOT_SUPPORTED_IN_RELEASE
    86.HRESULT:0x80040309Cannot rename the dataset.DATASET_CANNOT_RENAME_NOT_SUPPORTED
    87.HRESULT:0x8004030AUnable to instantiate dataset extension component.DATASET_EXTENSION_CREATE_FAILED
    88.HRESULT:0x8004030BUnable to initialize dataset extension.DATASET_EXTENSION_INIT_FAILED
    89.HRESULT:0x8004030CCannot create a low precision dataset in a high precision database.CANNOT_CREATE_LOW_PREC_DATASET_IN_HIGH_PREC_DB
    90.HRESULT:0x8004030DCannot create a high precision dataset in a low precision database.CANNOT_CREATE_HIGH_PREC_DATASET_IN_LOW_PREC_DB
    91.HRESULT:0x8004030EThe dataset type is not present in the database.DATASET_TYPE_NOT_PRESENT
    92.HRESULT:0x8004030FCannot copy a feature class without all associated controllers.CANNOT_COPY_CLASS_WITHOUT_ALL_CONTROLLERS
    93.HRESULT:0x80040310The dataset type is not supported in this release of the Geodatabase.DATASET_TYPE_NOT_SUPPORTED_IN_RELEASE
    94.HRESULT:0x80040311The dataset has an invalid definition.DATASET_INVALID_DEFINITION
    95.HRESULT:0x80040312The dataset has an invalid id.DATASET_INVALID_ID
    96.HRESULT:0x80040313Cannot rename a dataset that is being edited.CANNOT_RENAME_WHILE_EDITING
    97.HRESULT:0x80040314Cannot update the schema of a dataset that is being edited.CANNOT_MODIFY_SCHEMA_WHILE_EDITING
    98.HRESULT:0x80040315The dataset is unknown to this version of the Geodatabase client and cannot be opened.INCOMPATIBLE_CLIENT_CANNOT_OPEN_DATASET
    99.HRESULT:0x80040351The table was not found.TABLE_NOT_FOUND
    100.HRESULT:0x80040352The table name is invalid.TABLE_INVALID_NAME
    101.HRESULT:0x80040353The table already exists.TABLE_ALREADY_EXISTS
    102.HRESULT:0x80040354The table does not have an ObjectID field.TABLE_NO_OID_FIELD
    103.HRESULT:0x80040355The configuration keyword is invalid.TABLE_INVALID_KEYWORD
    104.HRESULT:0x80040356The table is not multiversioned.TABLE_NOT_VERSIONED
    105.HRESULT:0x80040357Cannot create a table with a duplicate column.TABLE_DUPLICATE_COLUMN
    106.HRESULT:0x80040358A column was specified that does not exist.TABLE_COLUMN_NOT_FOUND
    107.HRESULT:0x80040359Cannot access this table because it is in use.TABLE_IN_USE
    108.HRESULT:0x8004035AThe maximum record length has been exceeded.TABLE_RECORD_LENGTH_EXCEEDED
    109.HRESULT:0x8004035BThe table is multiversioned.TABLE_VERSIONED
    110.HRESULT:0x8004035CThe table is moving edits to base.TABLE_MOVINGEDITSTOBASE
    111.HRESULT:0x8004035DThe table has archiving enabled.TABLE_ARCHIVING
    112.HRESULT:0x8004035EThe table does not have archiving enabled.TABLE_NOT_ARCHIVING
    113.HRESULT:0x8004035FThe table is historical and is read-only.TABLE_READONLY_HISTORICAL
    114.HRESULT:0x80040360The table does not have attachments.TABLE_NO_ATTACHMENTS
    115.HRESULT:0x80040361Table attachments not supported in this release of the Geodatabase.TABLE_ATTACHMENTS_NOT_SUPPORTED
    116.HRESULT:0x80040362This feature class is based upon a table view and thus cannot be analyzed.TABLE_CANNOT_ANALYZE_TABLE_VIEW
    117.HRESULT:0x80040363The table does not have a Global ID field.TABLE_NO_GLOBALID_FIELD
    118.HRESULT:0x80040364Attachments are not supported on attachment tables.ATTACHMENTS_ON_ATTACHMENT_TABLE_NOT_SUPPORTED
    119.HRESULT:0x80040365Table is not empty.TABLE_NOT_EMPTY
    120.HRESULT:0x80040366Attachments only supported on geodatabases.ATTACHMENTS_ONLY_ON_GEODATABASES
    121.HRESULT:0x80040401The feature class was not found.FEATURECLASS_NOT_FOUND
    122.HRESULT:0x80040402The feature class’s extent could not be retrieved or is invalid.FEATURECLASS_BAD_EXTENT
    123.HRESULT:0x80040403Invalid feature class name.FEATURECLASS_INVALID_NAME
    124.HRESULT:0x80040404The feature class already exists.FEATURECLASS_ALREADY_EXISTS
    125.HRESULT:0x80040405The feature class is currently in load-only mode.FEATURECLASS_LOAD_MODE
    126.HRESULT:0x80040406The feature class is in a geometric network and cannot be deleted.FEATURECLASS_NETWORK_CANNOT_DELETE
    127.HRESULT:0x80040407The feature class’ default subtype code cannot be retrieved or is invalid.FEATURECLASS_BAD_DEFAULT_SUBTYPE_CODE
    128.HRESULT:0x80040408The feature class does not have a specified subtype field.FEATURECLASS_NO_SUBTYPE_FIELD
    129.HRESULT:0x80040409The orphan junction featureclass cannot be renamed.FEATURECLASS_NETWORK_CANNOT_RENAME
    130.HRESULT:0x8004040AThe feature class already has the specified subtype.FEATURECLASS_SUBTYPE_EXISTS
    131.HRESULT:0x8004040BThe feature dataset is not editable.FEATURECLASS_FD_NOT_EDITABLE
    132.HRESULT:0x8004040CThe subtype field on a feature class cannot be renamed.FEATURECLASS_SUBTYPE_FIELD_CANNOT_RENAME
    133.HRESULT:0x8004040DThe specified subtype code is either too large or small to represent.SUBTYPE_CODE_INVALID
    134.HRESULT:0x8004040EThe specified subtype code does not exist.SUBTYPE_CODE_DOES_NOT_EXIST
    135.HRESULT:0x8004040FThe value of the subtype code is NULL.SUBTYPE_CODE_IS_NULL
    136.HRESULT:0x80040410The value of the subtype code is not a long or short integer.SUBTYPE_CODE_NOT_INTEGER
    137.HRESULT:0x80040411The feature class does not have a shape column.FEATURECLASS_NO_SHAPE_COLUMN
    138.HRESULT:0x80040412The feature class is in a topology and cannot be deleted.FEATURECLASS_TOPOLOGY_CANNOT_DELETE
    139.HRESULT:0x80040413The subtype code is associated with a topology rule.SUBTYPE_CODE_HAS_ASSOCIATED_TOPOLOGY_RULE
    140.HRESULT:0x80040414The subtype code is in use and cannot be deleted.SUBTYPE_IN_USE_CANNOT_DELETE
    141.HRESULT:0x80040415The subtype code cannot be added.SUBTYPE_CANNOT_ADD
    142.HRESULT:0x80040416The spatial cache’s extent is empty or has not been set.SPATIAL_CACHE_EMPTY_EXTENT
    143.HRESULT:0x80040417The feature class is already a member of the specified controller.FEATURECLASS_MEMBER_OF_CONTROLLER
    144.HRESULT:0x80040418The feature class participates in a geometric network that could not be opened.FEATURECLASS_CANT_OPEN_GEOMETRICNETWORK
    145.HRESULT:0x80040419The feature class participates in a topology that could not be opened.FEATURECLASS_CANT_OPEN_TOPOLOGY
    146.HRESULT:0x8004041AThe feature class is in a network dataset and cannot be deleted.FEATURECLASS_NETWORK_DATASET_CANNOT_DELETE
    147.HRESULT:0x8004041BInsufficient privileges to perform the operation.FEATURECLASS_INSUFFICIENT_PRIVILEGE
    148.HRESULT:0x80040451The planargraph was not found.PLANARGRAPH_NOT_FOUND
    149.HRESULT:0x80040501The geometric network was not found.GEOMETRICNETWORK_NOT_FOUND
    150.HRESULT:0x80040502Error adding a feature to a network.ADD_FEATURE_TO_NETWORK
    151.HRESULT:0x80040503Error creating a logical network.CREATE_LOGICAL_NETWORK
    152.HRESULT:0x80040504The geometric network already exists.GEOMETRICNETWORK_ALREADY_EXISTS
    153.HRESULT:0x80040505Geometry corresponding to edge element may not be zero length.ZERO_LENGTH_EDGE_ELEMENT
    154.HRESULT:0x80040506Cannot rename a geometric network.GEOMETRICNETWORK_CANNOT_RENAME
    155.HRESULT:0x80040507Inconsistent elements in the geometric network.GEOMETRICNETWORK_ELEMENT_INCONSISTENCY
    156.HRESULT:0x80040508Feature classes in a geometric network must have homogeneous support for Zs on geometry.NETWORK_FEATURES_HAVE_HOMOGENEOUS_Z_SUPPORT
    157.HRESULT:0x80040509There is no error table associated with the geometric network.NO_ASSOCIATED_ERROR_TABLE
    158.HRESULT:0x8004050AThere is no point geometry associated with the feature element.FEATURE_ELEMENT_MISSING_POINT_GEOMETRY
    159.HRESULT:0x8004050BFeature classes in a geometric network must have homogeneous support for Ms on geometry.NETWORK_FEATURES_HAVE_HOMOGENEOUS_M_SUPPORT
    160.HRESULT:0x8004050CAn existing class has the same name as the orphan junction feature class.CLASS_EXISTS_WITH_ORPHAN_JUNCTION_CLASS_NAME
    161.HRESULT:0x8004050DThe geometric network name is invalid.GEOMETRICNETWORK_INVALID_NAME
    162.HRESULT:0x8004050EThe specified field cannot be part of a weight association.INVALID_FIELD_FOR_WEIGHT_ASSOCIATION
    163.HRESULT:0x8004050FThe specified class cannot be part of a weight association.INVALID_CLASS_FOR_WEIGHT_ASSOCIATION
    164.HRESULT:0x80040510The connected feature does not exist.CONNECTED_FEATURE_DOES_NOT_EXIST
    165.HRESULT:0x80040511Error opening a logical network.OPEN_LOGICAL_NETWORK
    166.HRESULT:0x80040512A network feature has a network element whose id is larger than the maximum eid value in the PROPS table.NETWORK_ELEMENT_ID_BEYOND_MAX
    167.HRESULT:0x80040513Edge endpoint is not coincident with junction.EDGE_ENDPOINT_NOT_COINCIDENT
    168.HRESULT:0x80040514Cannot delete populated feature class from a geometric network.CANNOT_DELETE_POPULATED_FEATURE_CLASS
    169.HRESULT:0x80040515Cannot delete the orphan junction class from a geometric network.CANNOT_DELETE_ORPHAN_JUNCTION_CLASS
    170.HRESULT:0x80040516Empty geometric network is not allowed.EMPTY_GEOMETRICNETWORK_IS_NOT_ALLOWED
    171.HRESULT:0x80040551The dataset does not support editing.DATASET_UNEDITABLE
    172.HRESULT:0x80040552Error starting an edit session.START_EDITING
    173.HRESULT:0x80040553Error saving an edit session.SAVE_EDIT_SESSION
    174.HRESULT:0x80040554Error stopping an edit session with save edits.STOP_EDITING_WITH_SAVE
    175.HRESULT:0x80040555Error stopping an edit session with discard edits.STOP_EDITING_WITH_DISCARD
    176.HRESULT:0x80040556This operation is not allowed while editing.NOT_ALLOWED_WHILE_EDITING
    177.HRESULT:0x80040557Error in cleaning coverage during save.COULD_NOT_CLEAN_COVERAGE
    178.HRESULT:0x80040558No valid InteGrateable Feature layers within Feature Dataset.NO_INTEGRATEABLE_LAYERS
    179.HRESULT:0x80040559Invalid Topology.INVALID_TOPOLOGY
    180.HRESULT:0x8004055AOperation only allowed while editing.NOT_EDITING
    181.HRESULT:0x8004055BError in encoding INFO item during save.COULD_NOT_ENCODE_INFO_ITEM
    182.HRESULT:0x8004055CNode must intersect an arc feature.NODE_NOT_ON_ARC
    183.HRESULT:0x8004055DCannot remove last label from polygon.CANNOT_REMOVE_LAST_LABEL
    184.HRESULT:0x8004055ECannot move label out of polygon.CANNOT_MOVE_LABEL_OUT_OF_POLYGON
    185.HRESULT:0x8004055F“Label no longer within valid polygon, deleting.”INVALID_POLYGON_LABEL_DELETED
    186.HRESULT:0x80040560Operations that break coverage topology are not supported.CANNOT_BREAK_TOPOLOGY
    187.HRESULT:0x80040561Coverage labels cannot be created in the universe polygon.CANNOT_CREATE_UNIVERSE_LABEL
    188.HRESULT:0x80040562Coverage labels in the universe polygon cannot be moved.CANNOT_MOVE_UNIVERSE_LABELS
    189.HRESULT:0x80040563Invalid geometry.INVALID_GEOMETRY
    190.HRESULT:0x80040564Corupted Coverage.CORUPTED_COVERAGE
    191.HRESULT:0x80040565Duplicate Field Names within Table.DUPLICATE_FIELD_NAMES
    192.HRESULT:0x80040566Cannot edit features with Z values.CANNOT_EDIT_ZS
    193.HRESULT:0x80040567“No newly added features, after PolygonSplitLines.”NO_POLYGONS_CREATED
    194.HRESULT:0x80040568Unable to save edits because an incorrect edit operation could not be completely rolled back.ABORT_EDITS_FAILED
    195.HRESULT:0x80040569Unable to save edits because of failure in flushing edits to the database.FLUSH_EDITS_FAILED
    196.HRESULT:0x8004056AUnable to edit the table or feature class because it has a unique index on a non OID field.CANNOT_EDIT_TABLE_WITH_UNIQ_USER_INDEX
    197.HRESULT:0x8004056BUnable to edit the dataset because it contains a table or feature class with a unique index on a non OID field.CANNOT_EDIT_DATASET_WITH_UNIQ_USER_INDEX
    198.HRESULT:0x8004056CCannot rebuild polygons from current topology elements.CANNOT_REBUILD_POLYGONS
    199.HRESULT:0x8004056DUser transaction not allowed at this time.USERTRANSACTION_NOT_ALLOWED
    200.HRESULT:0x8004056EThe object cannot be edited using the current edit session mode.NOT_EDITABLE_EDITSESSIONMODE
    201.HRESULT:0x8004056FCannot edit compressed data.CANNOT_EDIT_COMPRESSED_DATASET
    202.HRESULT:0x80040570Cannot update compressed data.CANNOT_UPDATE_COMPRESSED_DATASET
    203.HRESULT:0x80040571Cannot use compressed data for this operation.COMPRESSED_DATASET_NOT_SUPPORTED
    204.HRESULT:0x80040572Invalid operation for edit session mode.INVALID_OPERATION_FOR_EDITSESSIONMODE
    205.HRESULT:0x80040573FileGDB compression is not installed.COMPRESSED_DATASET_NOT_INSTALLED
    206.HRESULT:0x80040574The modified geometry must be a copy.MODIFIED_GEOMETRY_MUST_BE_COPY
    207.HRESULT:0x80040575The modified geometry must be a copy.PENDING_BACKGROUND_PROCESSES
    208.HRESULT:0x80040576Cannot Start/Stop editing while there is pending Feature/Record set input…PENDING_GEOPROCESSING_INPUT
    209.HRESULT:0x80040601This property does not have a SubType.PROPERTY_NO_SUBTYPE
    210.HRESULT:0x80040602The property was not found.PROPERTY_NOT_FOUND
    211.HRESULT:0x80040651A general error when something is wrong with a Field.FIELD_INVALID
    212.HRESULT:0x80040652The name of the Field is unacceptable.FIELD_INVALID_NAME
    213.HRESULT:0x80040653An expected Field was not found or could not be retrieved properly.FIELD_NOT_FOUND
    214.HRESULT:0x80040654The Field already exists.FIELD_ALREADY_EXISTS
    215.HRESULT:0x80040655The Field type is invalid or unsupported for the operation.FIELD_INVALID_TYPE
    216.HRESULT:0x80040656“The Field type does not support the current operation. For example, attempting to set OID field to NULL.”FIELD_UNSUPPORTED_OPERATION
    217.HRESULT:0x80040657The GeometryType property of the Field is invalid or unsupported for this operation.FIELD_INVALID_GEOMETRY_TYPE
    218.HRESULT:0x80040658The Field is not editable.FIELD_NOT_EDITABLE
    219.HRESULT:0x80040659The Field is not nullable.FIELD_NOT_NULLABLE
    220.HRESULT:0x8004065AThe Field corresponds to a weight and may not be deleted.FIELD_CANNOT_DELETE_WEIGHT_FIELD
    221.HRESULT:0x8004065BThe Field is required and may not be deleted.FIELD_CANNOT_DELETE_REQUIRED_FIELD
    222.HRESULT:0x8004065CThe Field is a subtype field and may not be deleted.FIELD_CANNOT_DELETE_SUBTYPE_FIELD
    223.HRESULT:0x8004065DThe Field is the last remaining field and may not be deleted.FIELD_CANNOT_DELETE_LAST_FIELD
    224.HRESULT:0x8004065EThe Field is the keyword the destination DBMS.FIELD_IS_KEYWORD
    225.HRESULT:0x8004065FThe field cannot be deleted because it is being used as a relationship key.FIELD_CANNOT_DELETE_RELKEY_FIELD
    226.HRESULT:0x80040660The shape field is missing the geometry def.FIELD_MISSING_GEOMETRY_DEF
    227.HRESULT:0x80040661The field is used as a relationship key.FIELD_IS_RELKEY_FIELD
    228.HRESULT:0x80040662The field is used by Editor Tracking.FIELD_USED_BY_EDITOR_TRACKING
    229.HRESULT:0x80040663The field is used to define subtypes.FIELD_IS_SUBTYPE_FIELD
    230.HRESULT:0x80040664The field is used to define a network ancillary role.FIELD_IS_NETWORK_ANCILLARY_FIELD
    231.HRESULT:0x80040665The field corresponds to a weight.FIELD_IS_WEIGHT_FIELD
    232.HRESULT:0x80040666The field is an enabled field associated with a network element.FIELD_IS_ENABLED_FIELD
    233.HRESULT:0x80040667The field is required.FIELD_IS_REQUIRED_FIELD
    234.HRESULT:0x80040701A general error when something is wrong with the Fields collection.FIELDS_INVALID
    235.HRESULT:0x80040702An expected Fields collection was not found or could not be retrieved properly.FIELDS_NOT_FOUND
    236.HRESULT:0x80040703The Fields collection did not contain an expected geometry field.FIELDS_NO_GEOMETRY
    237.HRESULT:0x80040704The Fields collection did not contain an expected OID field.FIELDS_NO_OID
    238.HRESULT:0x80040705The Fields collection contained multiple OID fields.FIELDS_MULTIPLE_OIDS
    239.HRESULT:0x80040706The Fields collection contained multiple geometry fields.FIELDS_MULTIPLE_GEOMETRIES
    240.HRESULT:0x80040707Another field within the class already has this model name.FIELDS_MODEL_NAME_ALREADY_EXISTS
    241.HRESULT:0x80040708The Fields collection contained multiple raster fields.FIELDS_MULTIPLE_RASTERS
    242.HRESULT:0x80040709The Fields collection contained multiple GlobalID fields.FIELDS_MULTIPLE_GLOBALIDS
    243.HRESULT:0x8004070AThe Fields collection is empty.FIELDS_EMPTY
    244.HRESULT:0x80040751The operation requires a different index type.INDEX_WRONG_TYPE
    245.HRESULT:0x80040752The index already exists.INDEX_ALREADY_EXISTS
    246.HRESULT:0x80040753The index was not found.INDEX_NOT_FOUND
    247.HRESULT:0x80040754This type of index is not allowed.INDEX_NOT_ALLOWED
    248.HRESULT:0x80040801Unable to find a required metadata table.METADATA_TABLE_NOT_FOUND
    249.HRESULT:0x80040802A required Field in a metadata table could not be located.METADATA_FIELD_NOT_FOUND
    250.HRESULT:0x80040803An error occurred adding an entry to the ESRI_DATASETS table.METADATA_ADDING_DATASET
    251.HRESULT:0x80040804An error occurred while adding an entry to the FEATUREDATASET_CLASSES or the FEATURECLASSES table.METADATA_ADDING_FEATURECLASS
    252.HRESULT:0x80040805The CLSID read from the FEATURECLASSES table was bad (unable to convert using ::CLSIDFromString).METADATA_BAD_CLSID
    253.HRESULT:0x80040851The operation does not support this spatial relationship.SPATIALREL_NOT_SUPPORTED
    254.HRESULT:0x80040852The spatial relationship is unknown or not defined.SPATIALREL_UNKNOWN
    255.HRESULT:0x80040853The operation does not support this feature type.FEATURETYPE_NOT_SUPPORTED
    256.HRESULT:0x80040854The feature type is unknown or not defined.FEATURETYPE_UNKNOWN
    257.HRESULT:0x80040855The operation does not support this dataset type.DATASETTYPE_NOT_SUPPORTED
    258.HRESULT:0x80040856The dataset type is unknown or not defined.DATASETTYPE_UNKNOWN
    259.HRESULT:0x80040857The operation does not support this draw style.DRAWSTYLE_NOT_SUPPORTED
    260.HRESULT:0x80040858The draw style is unknown or not defined.DRAWSTYLE_UNKNOWN
    261.HRESULT:0x80040859The operation does not support this draw phase.DRAWPHASE_NOT_SUPPORTED
    262.HRESULT:0x8004085AThe draw phase is unknown or not defined.DRAWPHASE_UNKNOWN
    263.HRESULT:0x80040901No support for this geometry type.GEOMETRY_TYPE_NOT_SUPPORTED
    264.HRESULT:0x80040902Multipart edge feature geometries not supported.MULTIPART_EDGE_FEATURE_NOT_SUPPORTED
    265.HRESULT:0x80040903Geometry has no M values.GEOMETRY_HAS_NO_M_VALUES
    266.HRESULT:0x80040904Geometry has no Z values.GEOMETRY_HAS_NO_Z_VALUES
    267.HRESULT:0x80040905Geometry has null Z values.GEOMETRY_HAS_NULL_Z_VALUES
    268.HRESULT:0x80040906Geometry is not simple.GEOMETRY_NOT_SIMPLE
    269.HRESULT:0x80040907Geometry cannot have Z values.GEOMETRY_CANNOT_HAVE_Z_VALUES
    270.HRESULT:0x80040908Spatial reference (projection) related error.GEOMETRY_SPATIAL_REFERENCE
    271.HRESULT:0x80040909Geometry is missing required spatial reference.GEOMETRY_MISSING_SPATIAL_REFERENCE
    272.HRESULT:0x8004090APolylines with vertical segments cannot be stored in pre-10.0 geodatabase feature classes.CANT_STORE_VERTICAL_SEGMENT
    273.HRESULT:0x80040951The row object does not support the IRowSetup interface.ROW_NO_SETUPINTERFACE
    274.HRESULT:0x80040952A requested row object could not be located.ROW_NOT_FOUND
    275.HRESULT:0x80040953The row does not have an OID.ROW_NO_OID
    276.HRESULT:0x80040954Cannot determine the row’s ObjectClass.ROW_NO_OBJCLASS
    277.HRESULT:0x80040955The row contains a bad value.ROW_BAD_VALUE
    278.HRESULT:0x80040956A row with this OID already exists.ROW_ALREADY_EXISTS
    279.HRESULT:0x80040957Cannot compare incompatible types.COMPARE_TYPE_MISMATCH
    280.HRESULT:0x80040958Cannot call Store on a recycled row while editing.CANNOT_STORE_RECYCLED_ROW_IN_EDIT_SESSION
    281.HRESULT:0x80041001The feature object does not have annotation.FEATURE_NO_ANNO
    282.HRESULT:0x80041002The feature object does not have a valid shape.FEATURE_BAD_SHAPE
    283.HRESULT:0x80041003The feature falls outside the defined spatial reference.FEATURE_OUTSIDE_SPATIALREF
    284.HRESULT:0x80041004The feature is mutually exclusive. Cannot update shape.FEATURE_SHAPE_UPDATE_BLOCKED
    285.HRESULT:0x80041005Failed to update feature’s area/length field in response to shape update.FEATURE_AREA_LENGTH_UPDATE_FAILED
    286.HRESULT:0x80041006On Delete Message returned failure.ON_DELETE_MESSAGE_FAILED
    287.HRESULT:0x80041007Failed to delete part objects for composite object.DELETE_PART_OBJECTS_FAILED
    288.HRESULT:0x80041008Failed to delete relationships for object.DELETE_RELATIONSHIPS_FAILED
    289.HRESULT:0x80041009On Changed message returned failure.ON_CHANGED_MESSAGE_FAILED
    290.HRESULT:0x8004100AFailed to move related features.MOVE_RELATED_FEATURES_FAILED
    291.HRESULT:0x8004100BFailed to rotate related features.ROTATE_RELATED_FEATURES_FAILED
    292.HRESULT:0x8004100CThe feature has been deleted.FEATURE_DELETED
    293.HRESULT:0x8004100DThe value type is incompatible.FEATURE_VALUE_TYPE_MISMATCH
    294.HRESULT:0x8004100EThe required custom complex junction was not implemented.CUSTOM_COMPLEX_JUNCTION_NOT_IMPLEMENTED
    295.HRESULT:0x8004100FA requested feature object could not be located.FEATURE_NOT_FOUND
    296.HRESULT:0x80041010The split operation is not supported on the selected feature’s geometry type.SPLIT_NOT_SUPPORTED_ON_GEOMETRY_TYPE
    297.HRESULT:0x80041011Splitting a polygon requires a polyline splitter.SPLITTING_POLYGONS_REQUIRES_POLYLINE
    298.HRESULT:0x80041012Splitting a polyline requires a point splitter.SPLITTING_POLYLINES_REQUIRES_POINT
    299.HRESULT:0x80041013Split point results in a zero length polyline.SPLIT_POINT_YIELDS_ZERO_LENGTH_POLYLINE
    300.HRESULT:0x80041014Cutting polyline results in zero area polygon.CUTTER_YIELDS_ZERO_AREA_POLYGON
    301.HRESULT:0x80041015The feature does not have any associated geometry.FEATURE_NO_GEOMETRY
    302.HRESULT:0x80041016A required interface on the feature was not found.REQUIRED_INTERFACE_NOT_FOUND
    303.HRESULT:0x80041017A required connection point on a complex junction was not found.REQUIRED_CONNECTION_POINT_NOT_FOUND
    304.HRESULT:0x80041018The geometry for a complex junction connection point is invalid.INVALID_CONNECTION_POINT_GEOMETRY
    305.HRESULT:0x80041019The feature has empty geometry.FEATURE_EMPTY_GEOMETRY
    306.HRESULT:0x80041051“This type of cursor does not support this operation. For example, calling UpdateRow on a read-only cursor.”CURSOR_WRONG_TYPE
    307.HRESULT:0x80041052The cursor is in an invalid state.CURSOR_INVALID
    308.HRESULT:0x80041053The cursor has completed and is at the end.CURSOR_FINISHED
    309.HRESULT:0x80041054The cursor cannot aquire a lock against the data.CURSOR_LOCKED
    310.HRESULT:0x80041055The cursor has been invalidated because the edit operation has stopped.CURSOR_INVALIDATED
    311.HRESULT:0x80041101The ID of the version is bad.VERSION_BAD_NAME
    312.HRESULT:0x80041102“The current version does not support editing (base, consistent, or closed).”VERSION_UNEDITABLE
    313.HRESULT:0x80041103This operation is not allowed using conflicting versions.VERSION_HAS_CONFLICTS
    314.HRESULT:0x80041104The version already exists.VERSION_ALREADY_EXISTS
    315.HRESULT:0x80041105The version has been redefined to reference a new database state.VERSION_REDEFINED
    316.HRESULT:0x80041106The version could not be located.VERSION_NOT_FOUND
    317.HRESULT:0x80041107The version’s internal state ID is invalid.VERSION_INVALID_STATE
    318.HRESULT:0x80041108Operation only allowed by the owner of the version.VERSION_NOT_OWNER
    319.HRESULT:0x80041109Operation only allowed on versions without children.VERSION_HAS_CHILDREN
    320.HRESULT:0x8004110AThe version has not been reconciled.VERSION_NOT_RECONCILED
    321.HRESULT:0x8004110BOperation not allowed because the version is protected.VERSION_IS_PROTECTED
    322.HRESULT:0x8004110COperation not allowed because the version is in use.VERSION_IN_USE
    323.HRESULT:0x8004110DOperation not allowed while the version is being edited.VERSION_BEING_EDITED
    324.HRESULT:0x8004110EOperation not allowed while the version is being reconciled.VERSION_BEING_RECONCILED
    325.HRESULT:0x8004110FUnable to reconcile: the target version is currently being reconciled against.RECONCILE_VERSION_NOT_AVAILABLE
    326.HRESULT:0x80041110Post not allowed after undoing a reconcile.VERSION_RECONCILE_LOST
    327.HRESULT:0x80041111Unable to reconcile : Failed filtering conflicts.FAILED_FILTERING_CONFLICTS
    328.HRESULT:0x80041112Unable to reconcile : Reconcile version is not an ancestor.RECONCILE_VERSION_NOT_ANCESTOR
    329.HRESULT:0x80041113Version cannot be reconciled.VERSION_CANNOT_BE_RECONCILED
    330.HRESULT:0x80041114Version cannot be reconciled.VERSION_NOT_HISTORICAL
    331.HRESULT:0x80041115The version can only be reconciled with its parent.VERSION_REQUIRES_PARENT_RECONCILE
    332.HRESULT:0x80041151DataSource could not be locked.DATASOURCE_LOCK_FAILED
    333.HRESULT:0x80041152DataSource lock could not be released.DATASOURCE_RELEASELOCK_FAILED
    334.HRESULT:0x80041153DataSource is being used in another application.DATASOURCE_INUSE_ELSEWHERE
    335.HRESULT:0x80041201The xy units are invalid.INVALID_UNITS
    336.HRESULT:0x80041202The spatial index grid size is invalid.INVALID_GRID_SIZE
    337.HRESULT:0x80041203The spatial references do not match.SPATIALREF_MISMATCH
    338.HRESULT:0x80041204Invalid spatial reference.SPATIALREF_INVALID
    339.HRESULT:0x80041205The M domain is invalid.INVALID_M_DOMAIN
    340.HRESULT:0x80041206The spatial reference cannot be altered.CANNOT_ALTER_SPATIALREF
    341.HRESULT:0x80041207No spatial reference exists.NO_SPATIALREF
    342.HRESULT:0x80041208High precision spatial reference not supported.HIGH_PRECISION_SR_NOT_SUPPORTED
    343.HRESULT:0x80041209Low precision spatial reference not supported.LOW_PRECISION_SR_NOT_SUPPORTED
    344.HRESULT:0x8004120AThe precision cannot be altered.CANNOT_ALTER_PRECISION
    345.HRESULT:0x8004120BThe spatial reference precision models do not match.SPATIALREF_PRECISION_MISMATCH
    346.HRESULT:0x8004120CThe resolution value must be larger than zero.NEGATIVE_RESOLUTION
    347.HRESULT:0x8004120DThe resolution value does not match permissible values.RESOLUTION_DOES_NOT_MATCH_PERMISSIBLE_VALUE
    348.HRESULT:0x8004120EThe XY domain is invalid.INVALID_XY_DOMAIN
    349.HRESULT:0x8004120FEvery grid size must be at least three times larger than the preceding grid size.GRID_SIZE_TOO_SMALL
    350.HRESULT:0x80041210The Z domain is invalid.INVALID_Z_DOMAIN
    351.HRESULT:0x80041211The spatial reference z values do not match.SPATIALREF_Z_MISMATCH
    352.HRESULT:0x80041251The spatial filter is invalid.SPATIALFILTER_INVALID
    353.HRESULT:0x80041252The geometry property of the spatial filter is invalid.SPATIALFILTER_INVALID_GEOMETRY
    354.HRESULT:0x80041253The spatial relation property of the spatial filter is invalid.SPATIALFILTER_INVALID_SPATIAL_RELATION
    355.HRESULT:0x80041301Selection sets do not match.SELECTION_MISMATCH
    356.HRESULT:0x80041302Selection type is invalid.SELECTION_INVALID_TYPE
    357.HRESULT:0x80041303No selectable layers.SELECTION_NO_SELECTABLE_LAYERS
    358.HRESULT:0x80041351Unable to instantiate object class instance COM component.OBJECTCLASS_COULD_NOT_CREATE_CLASS_INSTANCE
    359.HRESULT:0x80041352Unable to instantiate object class extension COM component.OBJECTCLASS_COULD_NOT_CREATE_CLASS_EXTENSION
    360.HRESULT:0x80041353Unable to initialize object class extension COM component.OBJECTCLASS_COULD_NOT_INITIALIZE_CLASS_EXTENSION
    361.HRESULT:0x80041354Objects in this object class cannot be updated outside of an edit session.OBJECTCLASS_REQUIRES_AN_EDIT_SESSION
    362.HRESULT:0x80041355An object class with this model name already exists.OBJECTCLASS_MODEL_NAME_ALREADY_EXISTS
    363.HRESULT:0x80041356The feature dataset is not editable.CLASS_FD_NOT_EDITABLE
    364.HRESULT:0x80041357The class extension property set could not be loaded.COULD_NOT_LOAD_CLASS_EXTENSION_PROPERTIES
    365.HRESULT:0x80041358The object class is not registered in the Geodatabase.OBJECTCLASS_NOT_REGISTERED
    366.HRESULT:0x80041359The class participates in a controller dataset.OBJECTCLASS_IN_CONTROLLER_DATASET
    367.HRESULT:0x80041501SDE Error.SE_FAILURE
    368.HRESULT:0x80041502SDE Error.SE_INVALID_LAYERINFO_OBJECT
    369.HRESULT:0x80041503SDE Error.SE_NO_ANNOTATION
    370.HRESULT:0x80041504SDE Error.SE_FINISHED
    371.HRESULT:0x80041505SDE Error.SE_SDE_NOT_STARTED
    372.HRESULT:0x80041506SDE Error.SE_UNCHANGED
    373.HRESULT:0x80041508SDE Error.SE_CONNECTIONS_EXCEEDED
    374.HRESULT:0x80041509SDE Error.SE_LOGIN_NOT_ALLOWED
    375.HRESULT:0x8004150ASDE Error.SE_INVALID_USER
    376.HRESULT:0x8004150BSDE Error.SE_NET_FAILURE
    377.HRESULT:0x8004150CSDE Error.SE_NET_TIMEOUT
    378.HRESULT:0x8004150DSDE Error.SE_OUT_OF_SVMEM
    379.HRESULT:0x8004150ESDE Error.SE_OUT_OF_CLMEM
    380.HRESULT:0x8004150FSDE Error.SE_OUT_OF_CONTEXT
    381.HRESULT:0x80041510SDE Error.SE_NO_ACCESS
    382.HRESULT:0x80041511SDE Error.SE_TOO_MANY_LAYERS
    383.HRESULT:0x80041512SDE Error.SE_NO_LAYER_SPECIFIED
    384.HRESULT:0x80041513SDE Error.SE_LAYER_LOCKED
    385.HRESULT:0x80041514SDE Error.SE_LAYER_EXISTS
    386.HRESULT:0x80041515SDE Error.SE_LAYER_NOEXIST
    387.HRESULT:0x80041516SDE Error.SE_LAYER_INUSE
    388.HRESULT:0x80041518SDE Error.SE_ROW_NOEXIST
    389.HRESULT:0x8004151ASDE Error.SE_ROW_EXISTS
    390.HRESULT:0x8004151BSDE Error.SE_LAYER_MISMATCH
    391.HRESULT:0x8004151CSDE Error.SE_NO_PERMISSIONS
    392.HRESULT:0x8004151DSDE Error.SE_INVALID_NOT_NULL
    393.HRESULT:0x8004151ESDE Error.SE_INVALID_SHAPE
    394.HRESULT:0x8004151FSDE Error.SE_INVALID_LAYER_NUMBER
    395.HRESULT:0x80041520SDE Error.SE_INVALID_ENTITY_TYPE
    396.HRESULT:0x80041521SDE Error.SE_INVALID_SEARCH_METHOD
    397.HRESULT:0x80041522SDE Error.SE_INVALID_ETYPE_MASK
    398.HRESULT:0x80041523SDE Error.SE_BIND_CONFLICT
    399.HRESULT:0x80041524SDE Error.SE_INVALID_GRIDSIZE
    400.HRESULT:0x80041525SDE Error.SE_INVALID_LOCK_MODE
    401.HRESULT:0x80041526SDE Error.SE_ETYPE_NOT_ALLOWED
    402.HRESULT:0x80041528SDE Error.SE_INVALID_NUM_OF_PTS
    403.HRESULT:0x80041529SDE Error.SE_TABLE_NOEXIST
    404.HRESULT:0x8004152ASDE Error.SE_ATTR_NOEXIST
    405.HRESULT:0x8004152BSDE Error.SE_LICENSE_FAILURE
    406.HRESULT:0x8004152CSDE Error.SE_OUT_OF_LICENSES
    407.HRESULT:0x8004152DSDE Error.SE_INVALID_COLUMN_VALUE
    408.HRESULT:0x8004152FSDE Error.SE_INVALID_SQL
    409.HRESULT:0x80041530SDE Error.SE_LOG_NOEXIST
    410.HRESULT:0x80041531SDE Error.SE_LOG_NOACCESS
    411.HRESULT:0x80041532SDE Error.SE_LOG_NOTOPEN
    412.HRESULT:0x80041533SDE Error.SE_LOG_IO_ERROR
    413.HRESULT:0x80041534SDE Error.SE_NO_SHAPES
    414.HRESULT:0x80041535SDE Error.SE_NO_LOCKS
    415.HRESULT:0x80041536SDE Error.SE_LOCK_CONFLICT
    416.HRESULT:0x80041537SDE Error.SE_OUT_OF_LOCKS
    417.HRESULT:0x80041538SDE Error.SE_DB_IO_ERROR
    418.HRESULT:0x80041539SDE Error.SE_STREAM_IN_PROGRESS
    419.HRESULT:0x8004153ASDE Error.SE_INVALID_COLUMN_TYPE
    420.HRESULT:0x8004153BSDE Error.SE_TOPO_ERROR
    421.HRESULT:0x8004153CSDE Error.SE_ATTR_CONV_ERROR
    422.HRESULT:0x8004153DSDE Error.SE_INVALID_COLUMN_DEF
    423.HRESULT:0x8004153ESDE Error.SE_INVALID_SHAPE_BUF_SIZE
    424.HRESULT:0x8004153FSDE Error.SE_INVALID_ENVELOPE
    425.HRESULT:0x80041540SDE Error.SE_TEMP_IO_ERROR
    426.HRESULT:0x80041541SDE Error.SE_GSIZE_TOO_SMALL
    427.HRESULT:0x80041542SDE Error.SE_LICENSE_EXPIRED
    428.HRESULT:0x80041543SDE Error.SE_TABLE_EXISTS
    429.HRESULT:0x80041544SDE Error.SE_INDEX_EXISTS
    430.HRESULT:0x80041545SDE Error.SE_INDEX_NOEXIST
    431.HRESULT:0x80041546SDE Error.SE_INVALID_POINTER
    432.HRESULT:0x80041547SDE Error.SE_INVALID_PARAM_VALUE
    433.HRESULT:0x80041548SDE Error.SE_ALL_SLIVERS
    434.HRESULT:0x80041549SDE Error.SE_TRANS_IN_PROGRESS
    435.HRESULT:0x8004154ASDE Error.SE_IOMGR_NO_DBMS_CONNECT
    436.HRESULT:0x8004154BSDE Error.SE_DUPLICATE_ARC
    437.HRESULT:0x8004154CSDE Error.SE_INVALID_ANNO_OBJECT
    438.HRESULT:0x8004154DSDE Error.SE_PT_NO_EXIST
    439.HRESULT:0x8004154ESDE Error.SE_PTS_NOT_ADJACENT
    440.HRESULT:0x8004154FSDE Error.SE_INVALID_MID_PT
    441.HRESULT:0x80041550SDE Error.SE_INVALID_END_PT
    442.HRESULT:0x80041551SDE Error.SE_INVALID_RADIUS
    443.HRESULT:0x80041552SDE Error.SE_LOAD_ONLY_LAYER
    444.HRESULT:0x80041553SDE Error.SE_LAYERS_NOT_FOUND
    445.HRESULT:0x80041554SDE Error.SE_FILE_IO_ERROR
    446.HRESULT:0x80041555SDE Error.SE_BLOB_SIZE_TOO_LARGE
    447.HRESULT:0x80041556SDE Error.SE_CORRIDOR_OUT_OF_BOUNDS
    448.HRESULT:0x80041557SDE Error.SE_SHAPE_INTEGRITY_ERROR
    449.HRESULT:0x80041558SDE Error.SE_NOT_IMPLEMENTED_YET
    450.HRESULT:0x80041559SDE Error.SE_CAD_EXISTS
    451.HRESULT:0x8004155ASDE Error.SE_INVALID_TRANSID
    452.HRESULT:0x8004155BSDE Error.SE_INVALID_LAYER_NAME
    453.HRESULT:0x8004155CSDE Error.SE_INVALID_LAYER_KEYWORD
    454.HRESULT:0x8004155DSDE Error.SE_INVALID_RELEASE
    455.HRESULT:0x8004155ESDE Error.SE_VERSION_TBL_EXISTS
    456.HRESULT:0x8004155FSDE Error.SE_COLUMN_NOT_BOUND
    457.HRESULT:0x80041560SDE Error.SE_INVALID_INDICATOR_VALUE
    458.HRESULT:0x80041561SDE Error.SE_INVALID_CONNECTION
    459.HRESULT:0x80041562SDE Error.SE_INVALID_DBA_PASSWORD
    460.HRESULT:0x80041563SDE Error.SE_PATH_NOT_FOUND
    461.HRESULT:0x80041564SDE Error.SE_SDEHOME_NOT_SET
    462.HRESULT:0x80041565SDE Error.SE_NOT_TABLE_OWNER
    463.HRESULT:0x80041566SDE Error.SE_PROCESS_NOT_FOUND
    464.HRESULT:0x80041567SDE Error.SE_INVALID_DBMS_LOGIN
    465.HRESULT:0x80041568SDE Error.SE_PASSWORD_TIMEOUT
    466.HRESULT:0x80041569SDE Error.SE_INVALID_SERVER
    467.HRESULT:0x8004156ASDE Error.SE_IOMGR_NOT_AVAILABLE
    468.HRESULT:0x8004156BSDE Error.SE_SERVICE_NOT_FOUND
    469.HRESULT:0x8004156CSDE Error.SE_INVALID_STATS_TYPE
    470.HRESULT:0x8004156DSDE Error.SE_INVALID_DISTINCT_TYPE
    471.HRESULT:0x8004156ESDE Error.SE_INVALID_GRANT_REVOKE
    472.HRESULT:0x8004156FSDE Error.SE_INVALID_SDEHOME
    473.HRESULT:0x80041570SDE Error.SE_INVALID_STREAM
    474.HRESULT:0x80041571SDE Error.SE_TOO_MANY_STREAMS
    475.HRESULT:0x80041572SDE Error.SE_OUT_OF_MUTEXES
    476.HRESULT:0x80041573SDE Error.SE_CONNECTION_LOCKED
    477.HRESULT:0x80041574SDE Error.SE_CONNECTION_IN_USE
    478.HRESULT:0x80041575SDE Error.SE_NOT_A_SELECT_STATEMENT
    479.HRESULT:0x80041576SDE Error.SE_FUNCTION_SEQUENCE_ERROR
    480.HRESULT:0x80041577SDE Error.SE_WRONG_COLUMN_TYPE
    481.HRESULT:0x80041578SDE Error.SE_PTABLE_LOCKED
    482.HRESULT:0x80041579SDE Error.SE_PTABLE_IN_USE
    483.HRESULT:0x8004157ASDE Error.SE_STABLE_LOCKED
    484.HRESULT:0x8004157BSDE Error.SE_STABLE_IN_USE
    485.HRESULT:0x8004157CSDE Error.SE_INVALID_FILTER_TYPE
    486.HRESULT:0x8004157DSDE Error.SE_NO_CAD
    487.HRESULT:0x8004157ESDE Error.SE_INSTANCE_NOT_AVAILABLE
    488.HRESULT:0x8004157FSDE Error.SE_INSTANCE_TOO_EARLY
    489.HRESULT:0x80041580SDE Error.SE_INVALID_SYSTEM_UNITS
    490.HRESULT:0x80041581SDE Error.SE_INVALID_UNITS
    491.HRESULT:0x80041582SDE Error.SE_INVALID_CAD_OBJECT
    492.HRESULT:0x80041583SDE Error.SE_VERSION_NOEXIST
    493.HRESULT:0x80041584SDE Error.SE_INVALID_SPATIAL_CONSTRAINT
    494.HRESULT:0x80041585SDE Error.SE_INVALID_STREAM_TYPE
    495.HRESULT:0x80041586SDE Error.SE_INVALID_SPATIAL_COLUMN
    496.HRESULT:0x80041587SDE Error.SE_NO_SPATIAL_MASKS
    497.HRESULT:0x80041588SDE Error.SE_IOMGR_NOT_FOUND
    498.HRESULT:0x80041589SDE Error.SE_SYSTEM_IS_CLIENT_ONLY
    499.HRESULT:0x8004158ASDE Error.SE_MULTIPLE_SPATIAL_COLS
    500.HRESULT:0x8004158BSDE Error.SE_INVALID_SHAPE_OBJECT
    501.HRESULT:0x8004158CSDE Error.SE_INVALID_PARTNUM
    502.HRESULT:0x8004158DSDE Error.SE_INCOMPATIBLE_SHAPES
    503.HRESULT:0x8004158ESDE Error.SE_INVALID_PART_OFFSET
    504.HRESULT:0x8004158FSDE Error.SE_INCOMPATIBLE_COORDREFS
    505.HRESULT:0x80041590SDE Error.SE_COORD_OUT_OF_BOUNDS
    506.HRESULT:0x80041591SDE Error.SE_LAYER_CACHE_FULL
    507.HRESULT:0x80041592SDE Error.SE_INVALID_COORDREF_OBJECT
    508.HRESULT:0x80041593SDE Error.SE_INVALID_COORDSYS_ID
    509.HRESULT:0x80041594SDE Error.SE_INVALID_COORDSYS_DESC
    510.HRESULT:0x80041595SDE Error.SE_INVALID_ROW_ID_LAYER
    511.HRESULT:0x80041596SDE Error.SE_PROJECTION_ERROR
    512.HRESULT:0x80041597SDE Error.SE_ARRAY_BYTES_EXCEEDED
    513.HRESULT:0x80041598SDE Error.SE_POLY_SHELLS_OVERLAP
    514.HRESULT:0x80041599SDE Error.SE_TOO_FEW_POINTS
    515.HRESULT:0x8004159ASDE Error.SE_INVALID_PART_SEPARATOR
    516.HRESULT:0x8004159BSDE Error.SE_INVALID_POLYGON_CLOSURE
    517.HRESULT:0x8004159CSDE Error.SE_INVALID_OUTER_SHELL
    518.HRESULT:0x8004159DSDE Error.SE_ZERO_AREA_POLYGON
    519.HRESULT:0x8004159ESDE Error.SE_POLYGON_HAS_VERTICAL_LINE
    520.HRESULT:0x8004159FSDE Error.SE_OUTER_SHELLS_OVERLAP
    521.HRESULT:0x800415A0SDE Error.SE_SELF_INTERSECTING
    522.HRESULT:0x800415A1SDE Error.SE_INVALID_EXPORT_FILE
    523.HRESULT:0x800415A2SDE Error.SE_READ_ONLY_SHAPE
    524.HRESULT:0x800415A3SDE Error.SE_INVALID_DATA_SOURCE
    525.HRESULT:0x800415A4SDE Error.SE_INVALID_STREAM_SPEC
    526.HRESULT:0x800415A5SDE Error.SE_INVALID_ALTER_OPERATION
    527.HRESULT:0x800415A6SDE Error.SE_INVALID_SPATIAL_COL_NAME
    528.HRESULT:0x800415A7SDE Error.SE_INVALID_DATABASE
    529.HRESULT:0x800415A8SDE Error.SE_SPATIAL_SQL_NOT_INSTALLED
    530.HRESULT:0x800415A9SDE Error.SE_NORM_DIM_INFO_NOT_FOUND
    531.HRESULT:0x800415AASDE Error.SE_NORM_DIM_TAB_VALUE_NOT_FOUND
    532.HRESULT:0x800415ABSDE Error.SE_UNSUPPORTED_NORMALIZED_OPERATION
    533.HRESULT:0x800415ACSDE Error.SE_INVALID_REGISTERED_LAYER_OPTION
    534.HRESULT:0x800415ADSDE Error.SE_READ_ONLY
    535.HRESULT:0x800415AESDE Error.SE_NO_SDE_ROWID_COLUMN
    536.HRESULT:0x800415AFSDE Error.SE_READ_ONLY_COLUMN
    537.HRESULT:0x800415B0SDE Error.SE_INVALID_VERSION_NAME
    538.HRESULT:0x800415B1SDE Error.SE_STATE_NOEXIST
    539.HRESULT:0x800415B2SDE Error.SE_INVALID_STATEINFO_OBJECT
    540.HRESULT:0x800415B3SDE Error.SE_VERSION_HAS_MOVED
    541.HRESULT:0x800415B4SDE Error.SE_STATE_HAS_CHILDREN
    542.HRESULT:0x800415B5SDE Error.SE_PARENT_NOT_CLOSED
    543.HRESULT:0x800415B6SDE Error.SE_VERSION_EXISTS
    544.HRESULT:0x800415B7SDE Error.SE_TABLE_NOT_MULTIVERSION
    545.HRESULT:0x800415B8SDE Error.SE_STATE_USED_BY_VERSION
    546.HRESULT:0x800415B9SDE Error.SE_INVALID_VERSIONINFO_OBJECT
    547.HRESULT:0x800415BASDE Error.SE_INVALID_STATE_ID
    548.HRESULT:0x800415BBSDE Error.SE_SDETRACELOC_NOT_SET
    549.HRESULT:0x800415BCSDE Error.SE_ERROR_LOADING_SSA
    550.HRESULT:0x800415BDSDE Error.SE_TOO_MANY_STATES
    551.HRESULT:0x800415BESDE Error.SE_STATES_ARE_SAME
    552.HRESULT:0x800415BFSDE Error.SE_NO_ROWID_COLUMN
    553.HRESULT:0x800415C0SDE Error.SE_NO_STATE_SET
    554.HRESULT:0x800415C1SDE Error.SE_SSA_FUNCTION_ERROR
    555.HRESULT:0x800415C2SDE Error.SE_INVALID_REGINFO_OBJECT
    556.HRESULT:0x800415C3SDE Error.SE_NO_COMMON_LINEAGE
    557.HRESULT:0x800415C4SDE Error.SE_STATE_INUSE
    558.HRESULT:0x800415C5SDE Error.SE_STATE_TREE_INUSE
    559.HRESULT:0x800415C6SDE Error.SE_INVALID_RASTER_COLUMN
    560.HRESULT:0x800415C7SDE Error.SE_RASTERCOLUMN_EXISTS
    561.HRESULT:0x800415C8SDE Error.SE_INVALID_MVTABLE_INDEX
    562.HRESULT:0x800415C9SDE Error.SE_INVALID_STORAGE_TYPE
    563.HRESULT:0x800415CASDE Error.SE_AMBIGUOUS_NIL_SHAPE
    564.HRESULT:0x800415CBSDE Error.SE_INVALID_BYTE_ORDER
    565.HRESULT:0x800415CCSDE Error.SE_INVALID_GEOMETRY_TYPE
    566.HRESULT:0x800415CDSDE Error.SE_INVALID_NUM_MEASURES
    567.HRESULT:0x800415CESDE Error.SE_INVALID_NUM_PARTS
    568.HRESULT:0x800415CFSDE Error.SE_BINARY_TOO_SMALL
    569.HRESULT:0x800415D0SDE Error.SE_SHAPE_TEXT_TOO_LONG
    570.HRESULT:0x800415D1SDE Error.SE_SHAPE_TEXT_ERROR
    571.HRESULT:0x800415D2SDE Error.SE_TOO_MANY_PARTS
    572.HRESULT:0x800415D3SDE Error.SE_TYPE_MISMATCH
    573.HRESULT:0x800415D4SDE Error.SE_SQL_PARENTHESIS_MISMATCH
    574.HRESULT:0x800415D5SDE Error.SE_NIL_SHAPE_NOT_ALLOWED
    575.HRESULT:0x800415D6SDE Error.SE_INSTANCE_ALREADY_RUNNING
    576.HRESULT:0x800415D7SDE Error.SE_UNSUPPORTED_OPERATION
    577.HRESULT:0x800415D8SDE Error.SE_INVALID_EXTERNAL_LAYER_OPTION
    578.HRESULT:0x800415D9SDE Error.SE_NORMALIZE_VALUE_NOT_FOUND
    579.HRESULT:0x800415DASDE Error.SE_INVALID_QUERY_TYPE
    580.HRESULT:0x800415DBSDE Error.SE_NO_TRACE_LIBRARY
    581.HRESULT:0x800415DCSDE Error.SE_TRACE_ON
    582.HRESULT:0x800415DDSDE Error.SE_TRACE_OFF
    583.HRESULT:0x800415DESDE Error.SE_SCL_SYNTAX_ERROR
    584.HRESULT:0x800415DFSDE Error.SE_TABLE_REGISTERED
    585.HRESULT:0x800415E0SDE Error.SE_INVALID_REGISTRATION_ID
    586.HRESULT:0x800415E1SDE Error.SE_TABLE_NOREGISTERED
    587.HRESULT:0x800415E2SDE Error.SE_TOO_MANY_REGISTRATIONS
    588.HRESULT:0x800415E3SDE Error.SE_DELETE_NOT_ALLOWED
    589.HRESULT:0x800415E6SDE Error.SE_RASTERCOLUMN_INUSE
    590.HRESULT:0x800415E7SDE Error.SE_RASTERCOLUMN_NOEXIST
    591.HRESULT:0x800415E8SDE Error.SE_INVALID_RASTERCOLUMN_NUMBER
    592.HRESULT:0x800415E9SDE Error.SE_TOO_MANY_RASTERCOLUMNS
    593.HRESULT:0x800415EASDE Error.SE_INVALID_RASTER_NUMBER
    594.HRESULT:0x800415EBSDE Error.SE_NO_REQUEST_STATUS
    595.HRESULT:0x800415ECSDE Error.SE_NO_REQUEST_RESULTS
    596.HRESULT:0x800415EDSDE Error.SE_RASTERBAND_EXISTS
    597.HRESULT:0x800415EESDE Error.SE_RASTERBAND_NOEXIST
    598.HRESULT:0x800415EFSDE Error.SE_RASTER_EXISTS
    599.HRESULT:0x800415F0SDE Error.SE_RASTER_NOEXIST
    600.HRESULT:0x800415F1SDE Error.SE_TOO_MANY_RASTERBANDS
    601.HRESULT:0x800415F2SDE Error.SE_TOO_MANY_RASTERS
    602.HRESULT:0x800415F3SDE Error.SE_VIEW_EXISTS
    603.HRESULT:0x800415F4SDE Error.SE_VIEW_NOEXIST
    604.HRESULT:0x800415F5SDE Error.SE_LOCK_EXISTS
    605.HRESULT:0x800415F6SDE Error.SE_ROWLOCK_MASK_CONFLICT
    606.HRESULT:0x800415F7SDE Error.SE_NOT_IN_RASTER
    607.HRESULT:0x800415F8SDE Error.SE_INVALID_RASBANDINFO_OBJECT
    608.HRESULT:0x800415F9SDE Error.SE_INVALID_RASCOLINFO_OBJECT
    609.HRESULT:0x800415FASDE Error.SE_INVALID_RASTERINFO_OBJECT
    610.HRESULT:0x800415FBSDE Error.SE_INVALID_RASTERBAND_NUMBER
    611.HRESULT:0x800415FCSDE Error.SE_MULTIPLE_RASTER_COLS
    612.HRESULT:0x800415FDSDE Error.SE_TABLE_SCHEMA_IS_LOCKED
    613.HRESULT:0x800415FESDE Error.SE_INVALID_LOGINFO_OBJECT
    614.HRESULT:0x800415FFSDE Error.SE_SQL_TOO_LONG
    615.HRESULT:0x80041600SDE Error.SE_UNSUPPORTED_ON_VIEW
    616.HRESULT:0x80041601SDE Error.SE_LOG_EXISTS
    617.HRESULT:0x80041602SDE Error.SE_SDE_WARNING
    618.HRESULT:0x80041603SDE Error.SE_ETYPE_CHANGED
    619.HRESULT:0x80041604SDE Error.SE_NO_ROWS_DELETED
    620.HRESULT:0x80041605SDE Error.SE_TOO_MANY_DISTINCTS
    621.HRESULT:0x80041606SDE Error.SE_NULL_VALUE
    622.HRESULT:0x80041607SDE Error.SE_NO_ROWS_UPDATED
    623.HRESULT:0x80041608SDE Error.SE_NO_CPGCVT
    624.HRESULT:0x80041609SDE Error.SE_NO_CPGHOME
    625.HRESULT:0x8004160ASDE Error.SE_DBMS_DOES_NOT_SUPPORT
    626.HRESULT:0x8004160BSDE Error.SE_ROWLOCKING_ENABLED
    627.HRESULT:0x8004160CSDE Error.SE_ROWLOCKING_NOT_ENABLED
    628.HRESULT:0x8004160DSDE Error.SE_LOG_IS_OPEN
    629.HRESULT:0x8004160ESDE Error.SE_SPATIALREF_EXISTS
    630.HRESULT:0x8004160FSDE Error.SE_SPATIALREF_NOEXIST
    631.HRESULT:0x80041610SDE Error.SE_SPATIALREF_IN_USE
    632.HRESULT:0x80041611SDE Error.SE_INVALID_SPATIALREFINFO_OBJECT
    633.HRESULT:0x80041612SDE Error.SE_INVALID_FUNCTION_ID
    634.HRESULT:0x80041613SDE Error.SE_MOSAIC_NOT_ALLOWED
    635.HRESULT:0x80041614SDE Error.SE_PASSWORD_EXPIRED
    636.HRESULT:0x80041615SDE Error.SE_NO_ARCSDE_LICENSE
    637.HRESULT:0x80041616SDE Error.SE_NO_ARCSDE_LICENSE_NO_PERMISSION
    638.HRESULT:0x80041617SDE Error.SE_NO_ARCSDE_LICENSE_SQLEXPRESS
    639.HRESULT:0x80041801The default value is not nullable.DEFAULT_VALUE_NOT_NULLABLE
    640.HRESULT:0x80041802The default value is not valid in the domain.DEFAULT_VALUE_INVALID
    641.HRESULT:0x80041851An object being transfered is in another Feature Dataset.OBJECT_IN_ANOTHER_FEATUREDATASET
    642.HRESULT:0x80041852Only simple features are supported in the simple data converter.ONLY_SIMPLE_FEATURES_SUPPORTED
    643.HRESULT:0x80041901The XML being loaded could not be parsed.XML_PARSE_ERROR
    644.HRESULT:0x80041951Can only reshape one edge at a time.TOPOLOGY_ILLEGAL_RESHAPE
    645.HRESULT:0x80041952The topology with the specified name already exists.TOPOLOGY_ALREADY_EXISTS
    646.HRESULT:0x80041953The topology was not found.TOPOLOGY_NOT_FOUND
    647.HRESULT:0x80041954The topology cannot be renamed.TOPOLOGY_CANNOT_RENAME
    648.HRESULT:0x80041955The feature class in not simple.INVALID_FEATURE_TYPE_FOR_TOPOLOGY
    649.HRESULT:0x80041956The feature class has an invalid geometry type.INVALID_GEOMETRY_TYPE_FOR_TOPOLOGY
    650.HRESULT:0x80041957The topology rule in invalid or malformed.INVALID_TOPOLOGY_RULE
    651.HRESULT:0x80041958The topology workspace extension was not found.TOPOLOGY_WORKSPACE_EXTENSION_NOT_FOUND
    652.HRESULT:0x80041959The topology cluster tolerance cannot be reset.CANNOT_RESET_CLUSTER_TOLERANCE
    653.HRESULT:0x8004195ATopologies not supported in this release of the Geodatabase.TOPOLOGIES_NOT_SUPPORTED_IN_RELEASE
    654.HRESULT:0x8004195BFeature class weight is invalid.TOPOLOGY_INVALID_WEIGHT
    655.HRESULT:0x8004195CTopology errors cannot be directly modified.CANNOT_MODIFY_TOPOLOGY_ERROR_FEATURE
    656.HRESULT:0x8004195DGeodatabase TopoClasses system table inconsistent.TOPOCLASSES_SYSTEM_TABLE_INCONSISTENCY
    657.HRESULT:0x8004195EThe specified cluster tolerance is invalid.INVALID_CLUSTER_TOLERANCE
    658.HRESULT:0x8004195FThe feature class has an invalid geometry type for the topology rule.INVALID_GEOMETRY_TYPE_FOR_TOPOLOGY_RULE
    659.HRESULT:0x80041960This operation is not supported on topology errors.NOT_SUPPORTED_ON_TOPOLOGY_ERROR_FEATURE
    660.HRESULT:0x80041961System tables cannot be modified.CANNOT_MODIFY_SYSTEM_MANAGED_TABLES
    661.HRESULT:0x80041962Topology edge is not selectable.TOPOLOGY_EDGE_NOT_SELECTABLE
    662.HRESULT:0x80041963The class is already a member of the topology.CLASS_ALREADY_MEMBER_OF_TOPOLOGY
    663.HRESULT:0x80041964An empty envelope was specified for the clean.EMPTY_ENVELOPE_FOR_CLEAN
    664.HRESULT:0x80041965Invalid Topology ID.INVALID_TOPOLOGY_ID
    665.HRESULT:0x80041966A failure was detected in the topology engine.TOPOLOGY_ENGINE_FAILURE
    666.HRESULT:0x80041967A failure was detected in the topology engine overlay processor.TOPOLOGY_ENGINE_OVERPROC_FAILURE
    667.HRESULT:0x80041968Invalid topology rule type.INVALID_TOPOLOGY_RULE_TYPE
    668.HRESULT:0x80041969Cannot currently partially rebuild the topology graph.NO_PARTIAL_REBUILD
    669.HRESULT:0x8004196ACannot add a registered as versioned class to the topology.CANNOT_ADD_REGISTERED_CLASS_TO_TOPOLOGY
    670.HRESULT:0x8004196BThe number of errors generated during the topology analysis exceeds the specified threshold.TOPOLOGY_ERROR_OVERFLOW
    671.HRESULT:0x8004196CCannot rename a network.NETWORK_CANNOT_RENAME
    672.HRESULT:0x8004196DInvalid network type.NETWORK_INVALID_TYPE
    673.HRESULT:0x8004196ENetwork already exists.NETWORK_ALREADY_EXISTS
    674.HRESULT:0x8004196FNetwork geometry invalid.NETWORK_INVALID_GEOMETRY_TYPE
    675.HRESULT:0x80041970Network not found.NETWORK_NOT_FOUND
    676.HRESULT:0x80041971Versioning not supported.VERSIONING_NOT_SUPPORTED
    677.HRESULT:0x80041972The class must be in the same feature dataset as the topology.CLASS_NOT_IN_TOPOLOGIES_FEATURE_DATASET
    678.HRESULT:0x80041973The topology does not contain any associated classes.TOPOLOGY_HAS_NO_CLASSES
    679.HRESULT:0x80041974Feature class rank is invalid.TOPOLOGY_INVALID_RANK
    680.HRESULT:0x80041975All available physical memory has been consumed.OUT_OF_PHYSICAL_MEMORY
    681.HRESULT:0x80041976The topology operation was cancelled by the user.TOPOLOGY_OPERATION_CANCELLED
    682.HRESULT:0x80041977The method is only supported on classes participating in a topology.CLASS_NOT_IN_TOPOLOGY
    683.HRESULT:0x80041978The endpoint of an edge cannot be modified if it is shared by other topology elements.MODIFY_EDGE_ENDPOINT
    684.HRESULT:0x80041979Cannot add a class that is not contained in a feature dataset to a topology.CANNOT_ADD_STANDALONE_CLASS_TO_TOPOLOGY
    685.HRESULT:0x8004197AUpdates to feature classes in a topology require an edit session.CLASS_IN_TOPOLOGY_REQUIRES_EDIT_SESSION
    686.HRESULT:0x8004197BA topology rule cannot be added to a versioned topology.CANNOT_ADD_RULE_TO_VERSIONED_TOPOLOGY
    687.HRESULT:0x8004197CCannot acquire a schema lock because of an existing lock; needed when validating outside edit session.TOPOLOGY_SCHEMA_LOCK_CONFLICT
    688.HRESULT:0x8004197DCannot create a dirty area outside the topology’s spatial domain.DIRTY_AREA_OUTSIDE_SPATIAL_DOMAIN
    689.HRESULT:0x8004197EThe topology name is invalid.TOPOLOGY_INVALID_NAME
    690.HRESULT:0x8004197FThe temporary file system space employed by the topology engine is full.TOPOLOGY_ENGINE_TEMP_SPACE_EXHAUSTED
    691.HRESULT:0x80041980The topology rule is inconsistent with other topology rules.INCONSISTENT_TOPOLOGY_RULE
    692.HRESULT:0x80041981Unsupported topology rule type.UNSUPPORTED_TOPOLOGY_RULE
    693.HRESULT:0x80041982Invalid topology rule type.INVALID_TOPOLOGY_RULE_CLASS_ASSIGNMENT
    694.HRESULT:0x80041983The operation is not supported inside an edit session.OPERATION_NOT_SUPPORTED_IN_EDIT_SESSION
    695.HRESULT:0x80041984A topology graph edit operation caused a feature geometry to become empty.TOPOLOGY_EMPTY_GEOMETRY
    696.HRESULT:0x80041985The topology graph cannot be constructed on the specified extent because the requested precision is too high.TOPOLOGY_EXTENT_TOO_LARGE
    697.HRESULT:0x80041986Z cluster tolerances are not supported in this release of the Geodatabase.Z_CLUSTER_TOLERANCE_NOT_SUPPORTED_IN_RELEASE
    698.HRESULT:0x80041987The operation requires an edit session.OPERATION_REQUIRES_EDIT_SESSION
    699.HRESULT:0x80041988The operation is not supported inside an edit session.OPERATION_NOT_SUPPORTED_IN_EDIT_OPERATION
    700.HRESULT:0x80041989The operation cannot be applied because the topology graph has not been defined.TOPOGRAPH_NOT_BUILT
    701.HRESULT:0x8004198AThe topo graph may be corrupt. Please rebuild it.TOPOGRAPH_CORRUPT
    702.HRESULT:0x8004198BNodes representing vertical edges cannot be removed during a merge operation.CANT_MERGE_VERTICALEDGES
    703.HRESULT:0x8004198CThe selected edges do not all belong to the same set of features.INCONSISTANT_MERGE_PARENTS
    704.HRESULT:0x8004198DThe selected set of edges does not form a connected path.EDGE_SET_NOT_CONNECTED
    705.HRESULT:0x8004198EThe topology rule is not supported in this release of the Geodatabase.TOPOLOGY_RULE_NOT_SUPPORTED_IN_RELEASE
    706.HRESULT:0x8004198FCan’t merge branching selected edges.CANT_MERGE_BRANCHINGEDGES
    707.HRESULT:0x80041990Can’t merge edge for self-overlapping polyline feature.NOT_PSEUDONODE
    708.HRESULT:0x80041991A class in the network dataset necessitates edits being run within an edit session.CLASS_IN_NETWORK_REQUIRES_EDIT_SESSION
    709.HRESULT:0x80041992Cannot add a class that is registered as versioned to a topology that is not registered as versioned.CANNOT_ADD_VERSIONED_CLASS_TO_NON_VERSIONED_TOPOLOGY
    710.HRESULT:0x80041993Cannot add a class that is not registered as versioned to a topology that is registered as versioned.CANNOT_ADD_NON_VERSIONED_CLASS_TO_VERSIONED_TOPOLOGY
    711.HRESULT:0x80041994Schema edits to a versioned topology are not supported in this release of the geodatabase.TOPOLOGIES_SCHEMA_CHANGES_NOT_SUPPORTED_IN_RELEASE
    712.HRESULT:0x80041995The terrain was not found.TERRAIN_NOT_FOUND
    713.HRESULT:0x80042051The Name String syntax of is incorrect.NAME_STRING_SYNTAX
    714.HRESULT:0x80042101The input XML is invalid for import into the specified object.INVALID_IMPORT_XML
    715.HRESULT:0x80042102The required XML element was not found.REQUIRED_XML_ELEMENT_NOT_FOUND
    716.HRESULT:0x80042103No dataset found to export.XML_EXPORT_DATASET_NOT_FOUND
    717.HRESULT:0x80042151The object is not in Replicable format (please configure).CLASS_NOT_REPLICABLE
    718.HRESULT:0x80042152Conflicts were detected during synchronization between replica pairs.SYNCHRONIZATION_CONFLICTS
    719.HRESULT:0x80042153Cannot synchronize because the replica version has not be reconciled against the sync version.CANNOT_SYNCHRONIZE
    720.HRESULT:0x80042154Replica data was not found.REPLICA_NOT_FOUND
    721.HRESULT:0x80042155Error during reconcile.RECONCILE_FAILED
    722.HRESULT:0x80042156Invalid Replica.INVALID_REPLICA
    723.HRESULT:0x80042157Generation numbers out of orderGENERATION_OUT_OF_ORDER
    724.HRESULT:0x80042158Previous synchronization had conflictsSYNCHRONIZATION_HAS_CONFLICTS
    725.HRESULT:0x80042159Replication not supported in this releaseREPLICATION_NOT_SUPPORTED_IN_RELEASE
    726.HRESULT:0x8004215AReplication not supported in this releaseREPLICATION_NOT_SUPPORTED
    727.HRESULT:0x8004215BTransmission does not contains changes previously sentMISSING_ACKNOWLEDGEMENT
    728.HRESULT:0x8004215CTransmission cannot be sent until acknowledgement of previously sent changesCANNOT_SEND_TRANSMISSION
    729.HRESULT:0x8004215DAnother synchronization in progess has locked the replicaREPLICA_LOCKED
    730.HRESULT:0x8004215EAn operation in a replica dataset is invalid since a related replica dataset is referenced by the replica.RELATED_DATASET_IS_REFERENCED_BY_REPLICA
    731.HRESULT:0x8004215FOperation not supported on a read-only replicaREADONLY_REPLICA
    732.HRESULT:0x80042160Old messagesOLD_MESSAGE
    733.HRESULT:0x80042161Replica in a SendingData stateREPLICA_IN_SENDING_DATA_STATE
    734.HRESULT:0x80042162Can only import acknowledgment messagesREPLICA_CAN_ONLY_IMPORT_ACKNOWLEDGMENT
    735.HRESULT:0x80042163Replica does not have any unacknowledged generationsREPLICA_NO_UNACKNOWLEDGED_GENERATIONS
    736.HRESULT:0x80042164Multi generations replicas are not supported in workspaceMULTIGEN_REPLICAS_NOT_SUPPORTED_IN_WORKSPACE
    737.HRESULT:0x80042165Cannot reexport changes from checkoutsCHECKOUTS_CANNOT_REEXPORT_CHANGES
    738.HRESULT:0x80042166Cannot reexport changes from data receiver replicaREPLICA_RECEIVER_CANNOT_REEXPORT_CHANGES
    739.HRESULT:0x80042167Cannot export changes from data receiver replicaREPLICA_RECEIVER_CANNOT_EXPORT_CHANGES
    740.HRESULT:0x80042168Cannot checkout a high precision data to a low precision datasetCANNOT_CHECKOUT_HIGH_PREC_DATA_IN_LOW_PREC_DATASET
    741.HRESULT:0x80042169Cannot checkout a high precision data to a low precision datasetCANNOT_REPLICATE_LOW_PRECISION_DATA
    742.HRESULT:0x8004216AInvalid output xml fileREPLICA_INVALID_OUTPUT_XML_FILE
    743.HRESULT:0x8004216BCannot register replicas for existing datasets.FDO_NO_MATCH_DATASETS_FOUND_FOR_REGISTER_REPLICAS
    744.HRESULT:0x8004216CCannot register non simple dataset in a replica.NON_SIMPLE_DATASET_CANNOT_BE_REGISTERED_BY_REPLICA
    745.HRESULT:0x8004216DReplica name contains invalid chars.INVALID_REPLICA_NAME
    746.HRESULT:0x8004216EMessages have already been acknowledged.REPLICA_OLD_ACK
    747.HRESULT:0x8004216FMessages have already been acknowledged.REPLICA_SCHEMA_CHANGES_WRONG_DIRECTION
    748.HRESULT:0x80042170Cannot create empty replica.CANNOT_CREATE_EMPTY_REPLICA
    749.HRESULT:0x80042171Cannot create empty replica.INVALID_DATA_FOR_THIS_OPERATION
    750.HRESULT:0x80042172Sync version of a replica not yet reconciled and posted.REPLICA_SYNC_VERSION_NOT_YET_POSTED
    751.HRESULT:0x80042173Child replica cannot be created in the same database as the source data.CHILD_REPLICA_CANNOT_BE_CREATED_IN_PARENTDB
    752.HRESULT:0x80042174GlobalID column cannot be deleted if it is referenced by a replica.GLOBALID_FIELD_REFERENCED_BY_REPLICA_CANNOT_BE_DELETED
    753.HRESULT:0x80042175Must be Replica owner to perform this operation.MUST_BE_REPLICA_OWNER
    754.HRESULT:0x80042176Replica with the same name already exists.REPLICA_NAME_ALEARDY_EXISTS
    755.HRESULT:0x80042177Cannot register empty replica.CANNOT_REGISTER_EMPTY_REPLICA
    756.HRESULT:0x80042178Cannot unregister globalID.FDO_UNREGISTER_GLOBALID_NOT_SUPPORTED
    757.HRESULT:0x80042179Cannot register nullable globalID.FDO_REGISTER_NULLABLE_GLOBALID_NOT_SUPPORTED
    758.HRESULT:0x8004217ACannot register nullable globalID.FDO_REGISTER_VERSIONED_GLOBALID_NOT_SUPPORTED
    759.HRESULT:0x8004217BCannot create a replica using archiving to a named version.FDO_ONEWAY_REPLICA_USING_ARCHIVING_NOT_SUPPORTED_IN_NAMED_VERSIONS
    760.HRESULT:0x8004217CCannot create oneway replica parent readonly on local workspaces.FDO_ONEWAY_REPLICA_PARENT_READONLY_NOT_SUPPORTED_IN_LOCAL_CHILD_WORKSPACES
    761.HRESULT:0x8004217DCannot synchronize a protected version by anyone other than the owner/dba of the version.MUST_BE_VERSION_OWNER_TO_SYNC
    762.HRESULT:0x8004217ECannot register data as replicas in a transport FileGDB. Only xml transport file is supported.FDO_DATA_CANNOT_BE_REGISTERED_AS_REPLICAS_IN_TRANSPORT_FGDB
    763.HRESULT:0x8004217FOperation is not supported. Child and parent replica cannot exist in the same geodatabase.CHILD_PARENT_REPLICA_CANNOT_EXIST_IN_SAME_GEODATABASE
    764.HRESULT:0x80042180Failed to set the target name.FAILED_TO_SET_TARGET_NAME
    765.HRESULT:0x80042251There is no associated default turn evaluator.NO_DEFAULT_TURN_EVALUATOR
    766.HRESULT:0x80042252Feature dataset network dataset containers are not supported.FEATURE_DATASET_CONTAINERS_NOT_SUPPORTED
    767.HRESULT:0x80042253The network dataset name is invalid.NETWORK_DATASET_INVALID_NAME
    768.HRESULT:0x80042254The network attribute name is invalid.INVALID_NETWORK_ATTRIBUTE_NAME
    769.HRESULT:0x80042255The network source is invalid for the evaluator.INVALID_NETWORK_SOURCE_FOR_EVALUATOR
    770.HRESULT:0x80042256The expression is invalid for the evaluator.INVALID_EXPRESSION_FOR_EVALUATOR
    771.HRESULT:0x80042257Invalid constant for attribute data type.INVALID_CONSTANT_FOR_NETWORK_ATTRIBUTE
    772.HRESULT:0x80042258Subtype specification is required (UsesSubtypes is True).SUBTYPES_REQUIRED
    773.HRESULT:0x80042259Invalid network dataset schema.INVALID_NETWORK_DATASET_SCHEMA
    774.HRESULT:0x8004225ANetwork object evaluator error.NETWORK_OBJECT_EVALUATOR_ERROR
    775.HRESULT:0x8004225BBad network edge orientation.NETWORK_BAD_EDGE_ORIENTATION
    776.HRESULT:0x8004225CThe network dataset has an invalid access mode.NETWORK_DATASET_INVALID_ACCESS
    777.HRESULT:0x8004225DThere is no associated default junction evaluator.NO_DEFAULT_JUNCTION_EVALUATOR
    778.HRESULT:0x8004225EThere is no associated default edge evaluator.NO_DEFAULT_EDGE_EVALUATOR
    779.HRESULT:0x8004225FThe network dataset does not support turns.NETWORK_DATASET_NOTURNS
    780.HRESULT:0x80042260Network element evaluator error.NETWORK_ELEMENT_EVALUATOR_ERROR
    781.HRESULT:0x80042261The dataset for the network source was not found.NETWORK_SOURCE_DATASET_NOT_FOUND
    782.HRESULT:0x80042262The source is not valid for the network.INVALID_NETWORK_SOURCE
    783.HRESULT:0x80042263The attribute is not valid for the network.INVALID_NETWORK_ATTRIBUTE
    784.HRESULT:0x80042264The connectivity group name is invalid.INVALID_CONNECTIVITY_GROUP_NAME
    785.HRESULT:0x80042265Subtype specification is not valid.SUBTYPES_NOT_IN_USE
    786.HRESULT:0x80042266Network datasets are not supported in this release of the Geodatabase.NETWORK_DATASETS_NOT_SUPPORTED_IN_RELEASE
    787.HRESULT:0x80042267The network dataset with the specified name already exists.NETWORK_DATASET_ALREADY_EXISTS
    788.HRESULT:0x80042268A connectivity group was not specified for one or more subtypes.SUBTYPES_UNSPECIFIED_CONN_GROUP
    789.HRESULT:0x80042269A connectivity policy was not specified for one or more subtypes.SUBTYPES_UNSPECIFIED_CONN_POLICY
    790.HRESULT:0x8004226AThe geometry type for the feature class is not valid for the network source.INVALID_NETWORK_SOURCE_GEOMETRY_TYPE
    791.HRESULT:0x8004226BThe feature type of the feature class is not valid for the network source.INVALID_NETWORK_SOURCE_FEATURE_TYPE
    792.HRESULT:0x8004226CThe fromEdge is not connected to the AtJunction.FSTAR_INVALID_FROM_EDGE
    793.HRESULT:0x8004226DThe evaluator object could not be created.EVALUATOR_CREATE
    794.HRESULT:0x8004226EThe evaluator failed to initialize data.EVALUATOR_INITIALIZE_DATA
    795.HRESULT:0x8004226FThe evaluator failed to initialize for queries.EVALUATOR_INITIALIZE_QUERY
    796.HRESULT:0x80042270The evaluator failed to return a value.EVALUATOR_QUERY
    797.HRESULT:0x80042271The network element id is invalid.INVALID_NETWORK_ELEMENT_ID
    798.HRESULT:0x80042272The network edge direction is invalid.INVALID_NETWORK_EDGE_DIRECTION
    799.HRESULT:0x80042273The network edge direction is invalid.INVALID_NETWORK_TURN_TYPE
    800.HRESULT:0x80042274There is no turn present at this adjacency index.TURN_NOT_PRESENT
    801.HRESULT:0x80042275Build is not supported on this network.BUILD_NOT_SUPPORTED
    802.HRESULT:0x80042276The operation is not supported on a buildable network.OPERATION_NOT_SUPPORTED_ON_BUILDABLE_NETWORK
    803.HRESULT:0x80042277The source name is invalid.NETWORK_SOURCE_INVALID_NAME
    804.HRESULT:0x80042278The element type for the network source is not valid.NETWORK_SOURCE_INVALID_ELEMENT_TYPE
    805.HRESULT:0x80042279There is no system junction source.NO_SYSTEM_JUNCTION_SOURCE
    806.HRESULT:0x8004227AThe system junction source is bad.BAD_SYSTEM_JUNCTION_SOURCE
    807.HRESULT:0x8004227BThe network element has not been initialized.NETWORK_ELEMENT_NOT_INITIALIZED
    808.HRESULT:0x8004227CAttributes cannot be added to network datasets with no sources.ATTRIBUTES_WITHOUT_SOURCES
    809.HRESULT:0x8004227DThe hierarchy max range values are invalid.INVALID_HIERARCHY_RANGES
    810.HRESULT:0x8004227ENetwork attributes cannot be deleted.CANNOT_DELETE_NETWORK_ATTRIBUTES
    811.HRESULT:0x8004227FNetwork source directions not supported on this network source type.SOURCE_DIRECTIONS_NOT_SUPPORTED
    812.HRESULT:0x80042280The network source with the specified name already exists.NETWORK_SOURCE_ALREADY_EXISTS
    813.HRESULT:0x80042281The network source with the specified name does not exist.NETWORK_SOURCE_NAME_DOESNT_EXIST
    814.HRESULT:0x80042282The network evaluator cannot be used as a default evaluator.EVALUATOR_CANNOT_BE_DEFAULT_EVALUATOR
    815.HRESULT:0x80042283The network attribute is invalid for the evaluator.INVALID_NETWORK_ATTRIBUTE_FOR_EVALUATOR
    816.HRESULT:0x80042284The network evaluator has not been validated.EVALUATOR_NOT_VALIDATED
    817.HRESULT:0x80042285The network evaluator is not valid.EVALUATOR_NOT_VALID
    818.HRESULT:0x80042286The network evaluator has not been initialized.EVALUATOR_NOT_INITIALIZED
    819.HRESULT:0x80042287The network evaluator has a syntax error.EVALUATOR_SYNTAX_ERROR
    820.HRESULT:0x80042288The network field evaluator is associated with a field than cannot be found.FIELD_EVALUATOR_FIELD_NOT_FOUND
    821.HRESULT:0x80042289The attribute id value is invalid.INVALID_NETWORK_ATTRIBUTE_ID
    822.HRESULT:0x8004228AThe network source fullname property is invalid.NETWORK_SOURCE_INVALID_FULLNAME
    823.HRESULT:0x8004228BThe evaluator in use is not a constant evaluator.NOT_CONSTANT_EVALUATOR
    824.HRESULT:0x8004228CCannot assign a directional evaluator to a junction source.DIRECTIONAL_EVALUATOR_WITH_JUNCTION_SOURCE
    825.HRESULT:0x8004228DThe data element type is incorrect for the operation.INCORRECT_DATA_ELEMENT_TYPE
    826.HRESULT:0x8004228EThe number or type of sources are invalid for shapefile-based network datasets.INVALID_SOURCES_FOR_SHAPEFILE_NETWORK_DATASET
    827.HRESULT:0x8004228FThe network source has an inconsistent elevation field specification.NETWORK_SOURCE_INCONSISTENT_ELEVATION_SPECIFICATION
    828.HRESULT:0x80042290The turn feature class does not participate in a network dataset.TURN_NO_NETWORK
    829.HRESULT:0x80042291The geometry references too many edges for the turn feature class.TURN_GEOM_TOO_MANY_VERTICES
    830.HRESULT:0x80042292The current edge sequence is not valid.TURN_NOT_VALID
    831.HRESULT:0x80042293The geometry must have polyline geometry type.TURN_GEOM_NOT_POLYLINE
    832.HRESULT:0x80042294A turn must include at least two edges.TURN_GEOM_NOT_ENOUGH_VERTICES
    833.HRESULT:0x80042295The geometry cannot be a multipart line.TURN_GEOM_MULTIPART
    834.HRESULT:0x80042296The first vertex could not be snapped to a network edge.TURN_GEOM_NO_FIRST_FEATURE
    835.HRESULT:0x80042297The last vertex could not be snapped to a network edge.TURN_GEOM_NO_LAST_FEATURE
    836.HRESULT:0x80042298The turn references a line feature that does not have network edge elements.TURN_GEOM_NO_FEATURES
    837.HRESULT:0x80042299The edges are not adjacent in the network dataset.TURN_GEOM_DISCONNECTED_FEATURES
    838.HRESULT:0x8004229AThe edges are not adjacent in the network dataset in this sequence.TURN_GEOM_INVALID_SEQUENCE
    839.HRESULT:0x8004229BA turn must include at least two edges.TURN_NOT_ENOUGH_PARTS
    840.HRESULT:0x8004229CA network edge element used in the middle of the turn sequence cannot also be used at the start or end of the sequence.TURN_NDS_INTERIOR_EXTERIOR_CONFLICT
    841.HRESULT:0x8004229DA turn cannot have any self-looping edge elements.TURN_NDS_EXTERIOR_LOOP
    842.HRESULT:0x8004229ENo edge feature sources have been added to the current map.TURN_NO_EDGE_SOURCES
    843.HRESULT:0x8004229FThe value for the Edge1End field in the turn feature class is invalid.TURN_INVALID_EDGE1END
    844.HRESULT:0x800422A0The direction of the turn cannot be determined.TURN_GEOM_AMBIGUOUS_FEATURES
    845.HRESULT:0x800422A1The network dataset cannot be opened as one of its network sources is missing.NETWORK_MISSING_SOURCE
    846.HRESULT:0x800422A2Cannot assign a directional evaluator to a turn source.DIRECTIONAL_EVALUATOR_WITH_TURN_SOURCE
    847.HRESULT:0x800422A3Cannot find the feature class associated with the network source.NETWORK_SOURCE_MISSING_FEATURE_CLASS
    848.HRESULT:0x800422A4The network source must correspond to a simple feature class.NETWORK_SOURCE_NOT_SIMPLE_FEATURE_CLASS
    849.HRESULT:0x800422A5The network source participates in multiple network datasets.NETWORK_SOURCE_IN_MULTIPLE_NETWORKS
    850.HRESULT:0x800422A6Unable to instantiate the network evaluator component.NETWORK_EVALUATOR_CREATE_FAILED
    851.HRESULT:0x800422A7Cannot assign a field evaluator as a default evalautor.FIELD_EVALUATOR_AS_DEFAULT_EVALUATOR
    852.HRESULT:0x800422A8Cannot assign a non-directional evaluator with an edge feature source.NODIRECTIONAL_EVALUATOR_WITH_EDGE_SOURCE
    853.HRESULT:0x800422A9The network source is missing for the evaluator.MISSING_NETWORK_SOURCE_FOR_EVALUATOR
    854.HRESULT:0x800422AAThe geometry for a turn cannot start or end at a junction.TURN_ILLEGAL_START_END_POS
    855.HRESULT:0x800422ABSystem junction sources cannot be deleted.CANNOT_DELETE_SYSTEM_JUNCTION_SOURCE
    856.HRESULT:0x800422ACThe value for one of the edge descriptors is invalid.TURN_INVALID_EDGE_DESCRIPTOR
    857.HRESULT:0x800422ADTurn support cannot be changed on an existing network dataset.TURN_CANNOT_CHANGE_SUPPORT
    858.HRESULT:0x800422AEThe id value cannot be represented in 32 bits.ID_OVERFLOW
    859.HRESULT:0x800422AFThe value for maximum edges per turn is invalid.TURN_INVALID_MAX_EDGES
    860.HRESULT:0x800422B0The value for maximum edges per turn cannot be less than the existing value.TURN_INVALID_CUR_MAX_EDGES
    861.HRESULT:0x800422B1The script control is unavailable.NO_SCRIPT_CONTROL
    862.HRESULT:0x800422B2The vertices of the turn geometry must intersect each edge in the turn.TURN_MISSING_EDGE
    863.HRESULT:0x800422B3The system junction class does not have the elevation field.MISSING_SYSTEM_JUNCTION_CLASS_ELEV_FIELD
    864.HRESULT:0x800422B4The system junction class elevation field does not have long integer type.BAD_TYPE_SYSTEM_JUNCTION_CLASS_ELEV_FIELD
    865.HRESULT:0x800422B5The schema update is invalid.INVALID_SCHEMA_UPDATE
    866.HRESULT:0x800422B6The UseByDefault property on a network attribute is not supported in this Geodatabase release.USE_BY_DEFAULT_NOT_SUPPORTED
    867.HRESULT:0x800422B7Signposts on network directions are not supported in this Geodatabase release.SIGNPOSTS_NOT_SUPPORTED
    868.HRESULT:0x800422B8The network attribute with the specified name already exists.NETWORK_ATTRIBUTE_ALREADY_EXISTS
    869.HRESULT:0x800422B9The network directions output length unit is invalid.INVALID_DIRECTIONS_LENGTH_UNIT
    870.HRESULT:0x800422BAThe global turn delay categories are overlapping.OVERLAPPING_NETWORK_GLOBAL_TURN_DELAY_CATEGORIES
    871.HRESULT:0x800422BBThe network attribute does not have cost usage.NETWORK_ATTRIBUTE_NOT_COST_USAGE
    872.HRESULT:0x800422BCThe network attribute does not have time units.NETWORK_ATTRIBUTE_NOT_TIME_UNITS
    873.HRESULT:0x800422BDThe network attribute evaluator is self referential.NETWORK_ATTRIBUTE_REFERENCES_SELF
    874.HRESULT:0x800422BEThe operator used by the network function operator is not supported for this attribute data type.NETWORK_FUNCTION_EVALUATOR_OPERATOR_NOT_SUPPORTED
    875.HRESULT:0x800422BFThe first argument to the network function evaluator is invalid.NETWORK_FUNCTION_EVALUATOR_ARGUMENT1_INVALID
    876.HRESULT:0x800422C0The second argument to the network function evaluator is invalid.NETWORK_FUNCTION_EVALUATOR_ARGUMENT2_INVALID
    877.HRESULT:0x800422C1The parameter used by this network function evaluator does not exist.NETWORK_FUNCTION_EVALUATOR_PARAMETER_MISSING
    878.HRESULT:0x800422C2The parameter used by this network function evaluator is not numeric.NETWORK_FUNCTION_EVALUATOR_PARAMETER_NOT_NUMERIC
    879.HRESULT:0x800422C3The function evaluator value calculation results in a numeric overflow.NETWORK_FUNCTION_EVALUATOR_OVERFLOW
    880.HRESULT:0x800422C4The attribute referenced by the network function evaluator does not exist.NETWORK_FUNCTION_EVALUATOR_MISSING_REFERENCED_NETWORK_ATTRIBUTE
    881.HRESULT:0x800422C5The attribute referenced by the network function evalutor is not numeric.NETWORK_FUNCTION_EVALUATOR_REFERENCED_NETWORK_ATTRIBUTE_NOT_NUMERIC
    882.HRESULT:0x800422C6The network evaluator is not supported.EVALUATOR_NOT_SUPPORTED
    883.HRESULT:0x800422C7INetworkForwardStarSetup.AddCachedAttribute has been deprecated and should not be called.FORWARDSTAR_ADD_CACHED_ATTRIBUTE_DEPRECATED
    884.HRESULT:0x800422C8INetworkForwardStarSetup.RemoveAllCachedAttributes has been deprecated and should not be called.FORWARDSTAR_REMOVE_CACHED_ATTRIBUTES_DEPRECATED
    885.HRESULT:0x800422C9The network attribute usage type is invalid for this operation.INVALID_NETWORK_ATTRIBUTE_USAGE_TYPE
    886.HRESULT:0x800422CAThe network attribute adjustment type is invalid for the given range along this edge.INVALID_NETWORK_EDGE_ATTRIBUTE_ADJUSTMENT
    887.HRESULT:0x800422CBThe provided network attribute adjustment value is invalid for this operation on this network attribute.INVALID_NETWORK_ATTRIBUTE_ADJUSTMENT_VALUE
    888.HRESULT:0x800422CCThe range of positions is invalid for this operation.INVALID_POSITION_RANGE
    889.HRESULT:0x800422CDNetwork elevation model cannot be changed in the existing network dataset.NETWORK_ELEVATION_MODEL_CANNOT_CHANGE
    890.HRESULT:0x800422CEConnectivity by Z coordinates is not supported in this geodatabase release.ZCOORDINATES_NOT_SUPPORTED_IN_RELEASE
    891.HRESULT:0x800422CFNetwork source cannot be added to the 3D network dataset since it is not Z-aware.NETWORK_SOURCE_INVALID_ELAVATION_MODEL
    892.HRESULT:0x800422D0The network edge does not have a covering hyperedge.NETWORK_COVERING_HYPEREDGE_DOES_NOT_EXIST
    893.HRESULT:0x800422D1The evaluator is invalid for shapefile-based network datasets.INVALID_EVALUATOR_FOR_SHAPEFILE_NETWORK_DATASET
    894.HRESULT:0x800422D2The usage type or unit type of the evaluator is invalid.INVALID_USAGE_OR_UNIT_TYPE_FOR_EVALUATOR
    895.HRESULT:0x800422D3The traffic data is invalid.INVALID_TRAFFIC_DATA
    896.HRESULT:0x800422D4The time slice field name is invalid.INVALID_TIME_SLICE_FIELD_NAME
    897.HRESULT:0x800422D5Historical traffic data cannot be added to or deleted from the existing network dataset.HISTORICAL_TRAFFIC_DATA_CANNOT_CHANGE
    898.HRESULT:0x800422D6The traffic data is not supported.TRAFFIC_DATA_NOT_SUPPORTED
    899.HRESULT:0x800422D7Traffic data fallback or time neutral attribute is missing.TRAFFIC_DATA_ATTRIBUTE_MISSING
    900.HRESULT:0x800422D8The network dataset does not have a time zone attribute.NETWORK_DATASET_NO_TIME_ZONE
    901.HRESULT:0x800422D9The network dataset signpost table is not registered in the Geodatabase.SIGNPOST_TABLE_NOT_REGISTERED
    902.HRESULT:0x800422DAThe network dataset build should be done outside of an edit session.BUILD_INSIDE_EDIT_SESSION
    903.HRESULT:0x800422DBThe network dataset has already been built.BUILDNETWORK_ALREADYBUILD
    904.HRESULT:0x800422DC“For forward traversal, the AtJunction must be the FromEdge’s ToJunction.”FSTAR_INVALID_FROM_EDGE_FORWARD
    905.HRESULT:0x800422DD“For backward traversal, the AtJunction must be the FromEdge’s FromJunction.”FSTAR_INVALID_FROM_EDGE_BACKWARD
    906.HRESULT:0x800422DENo matching attribute record found.NO_ATTRIBUTE_RECORD
    907.HRESULT:0x800422DFThe network dataset needs to be upgraded.NETWORK_DATASET_NEEDS_UPGRADE
    908.HRESULT:0x800422E0The network dataset has already being upgraded.NETWORK_DATASET_ALREADY_UPGRADED
    909.HRESULT:0x800422E1“The input time value is before January 1, 1970.”INVALID_TIME_VALUE
    910.HRESULT:0x800422E2The time usage type is invalid.INVALID_NETWORK_TIME_USAGE_TYPE
    911.HRESULT:0x800422E3Invalid time zone ObjectID.INVALID_TIME_ZONE_OBJECTID
    912.HRESULT:0x800422E4Invalid time zone name.INVALID_TIME_ZONE_NAME
    913.HRESULT:0x800422E5The length attribute used by the traffic data is missing.TRAFFIC_DATA_LENGTH_ATTRIBUTE_MISSING
    914.HRESULT:0x800422E6The number of input array values must equal the number of time slices specified in the last call to StartEditing.INVALID_TIME_SLICE_ARRAY
    915.HRESULT:0x800422E7Schema edits to a versioned network dataset are not supported.NETWORK_SCHEMA_CHANGES_NOT_SUPPORTED
    916.HRESULT:0x800422E8The landmark source is not valid.INVALID_NETWORK_LANDMARK_SOURCE
    917.HRESULT:0x800422E9The geometry type for the feature class is not valid for the network landmark source.INVALID_NETWORK_LANDMARK_SOURCE_GEOMETRY_TYPE
    918.HRESULT:0x800422EAInvalid or missing network landmark source field.INVALID_NETWORK_LANDMARK_SOURCE_FIELD
    919.HRESULT:0x800422EBA time zone network attribute is required for network datasets that use live traffic feeds.TIME_ZONE_ATTRIBUTE_IS_REQUIRED
    920.HRESULT:0x80042401The cadastral fabric name is invalid.CADASTRAL_FABRIC_INVALID_NAME
    921.HRESULT:0x80042402Cadastral fabrics are not supported in this release of the Geodatabase.CADASTRAL_FABRICS_NOT_SUPPORTED_IN_RELEASE
    922.HRESULT:0x80042403A cadastral fabric with the specified name already exists.CADASTRAL_FABRIC_ALREADY_EXISTS
    923.HRESULT:0x80042404A job with the specified name already exists for the cadastral fabric.CADASTRAL_FABRIC_JOB_ALREADY_EXISTS
    924.HRESULT:0x80042405The status of the job is invalid for this procedure.CADASTRAL_FABRIC_JOB_INVALID_STATUS
    925.HRESULT:0x80042406Schema error. Required fields are missing.CADASTRAL_FABRIC_SCHEMA_CORRUPTION
    926.HRESULT:0x80042407Lock already exists for cadastral feature.CADASTRAL_FABRIC_JOB_LOCK_ALREADY_EXISTS
    927.HRESULT:0x80042408System table is missing.CADASTRAL_FABRIC_MISSING_SYSTEM_TABLE
    928.HRESULT:0x80042409Data is corrupted.CADASTRAL_FABRIC_DATA_CORRUPTION
    929.HRESULT:0x8004240AJob has already been committed.CADASTRAL_FABRIC_JOB_ALREADY_COMMITTED
    930.HRESULT:0x8004240BThe cadastral job was not found.CADASTRAL_FABRIC_JOB_NOT_FOUND
    931.HRESULT:0x8004240CXML Packet failed to load.CADASTRAL_FABRIC_PACKET_LOAD_FAILED
    932.HRESULT:0x8004240DXML Packet is missing required data.CADASTRAL_FABRIC_PACKET_MISSING_DATA
    933.HRESULT:0x8004240EThe specified cadastral job does not belong to the current fabric.JOB_DOES_NOT_BELONG_TO_FABRIC
    934.HRESULT:0x8004240FEdits to the fabric require an edit session.CADASTRAL_FABRIC_PACKET_POST_REQUIRES_EDIT_SESSION
    935.HRESULT:0x80042410Cannot commit a cadastral job that contains unjoined parcels.JOB_UNJOINED_PARCEL_PRESENT
    936.HRESULT:0x80042411The version of XML cannot be loaded.CADASTRAL_FABRIC_XML_PARSER_NOT_FOUND
    937.HRESULT:0x80042412Cadastral feature already updated in default version.CADASTRAL_FABRIC_OBJECT_ALREADY_MODIFIED
    938.HRESULT:0x80042413Cadastral feature is part of a job that is currently been edited.CADASTRAL_FABRIC_JOB_CURRENTLY_EDITED
    939.HRESULT:0x80042414Source Datum does not match Cadastral Fabric Datum.CADASTRAL_FABRIC_DATUM_MISMATCH
    940.HRESULT:0x80042415Cannot reconcile grandchild versions with fabric edits against default.CADASTRAL_FABRIC_ILLEGAL_RECONCILE
    941.HRESULT:0x80042416Cannot commit the given job - no name supplied.CADASTRAL_FABRIC_COMMIT_NO_NAME
    942.HRESULT:0x80042417Cannot commit the given job - not in default.CADASTRAL_FABRIC_COMMIT_NOT_DEFAULT
    943.HRESULT:0x80042418Cannot commit the given job - the job is currently locked.CADASTRAL_FABRIC_COMMIT_JOB_LOCKED
    944.HRESULT:0x80042419Cannot delete the given job - the job is not committed.CADASTRAL_FABRIC_JOB_NOT_COMMITTED
    945.HRESULT:0x8004241ACopy paste of a topology with a cadastral fabric dataset is not supported in this release.CADASTRAL_FABRIC_COPY_WITH_TOPOLOGY_NOT_SUPPORTED_IN_RELEASE
    946.HRESULT:0x8004241BThe cadastral fabric operation was cancelled.CADASTRAL_FABRIC_OPERATION_CANCELLED
    947.HRESULT:0x8004241CThe parcel fabric dataset has already being upgraded.CADASTRAL_FABRIC_ALREADY_UPGRADED
    948.HRESULT:0x80042501Personal SDE can only have one editor.PERSONAL_SDE_ONE_EDITOR
    949.HRESULT:0x80042502Failed to connect to Database Server.CANNOT_CONNECT_TO_SERVER
    950.HRESULT:0x80042601The item was not found.ITEM_NOT_FOUND
    951.HRESULT:0x80042602The item with path already exists.ITEM_WITH_PATH_EXISTS
    952.HRESULT:0x80042603The item does not have a definition.ITEM_DOES_NOT_HAVE_DEFINITION
    953.HRESULT:0x80042604The catalog path is invalid.INVALID_CATALOG_PATH
    954.HRESULT:0x80042605A relationship already exists between these items.ITEM_RELATIONSHIP_EXISTS
    955.HRESULT:0x80042606Cannot change the visibility of an existing item.CANNOT_CHANGE_ITEM_VISIBILITY
    956.HRESULT:0x80042607Item relationship visibility must match the visibility of the related items.RELATIONSHIP_VISIBILITY_INVALID
    957.HRESULT:0x80042608UpdateDataset cannot change this property.CANNOT_CHANGE_ITEM_PROPERTY
    958.HRESULT:0x80042609Item relationship attributes are invalid.RELATIONSHIP_ATTRIBUTES_INVALID
    959.HRESULT:0x8004260ACannot upgrade because there are other active connections.OTHER_ACTIVE_CONNECTIONS
    960.HRESULT:0x8004260BUser does not have required priviliges to upgrade.USER_DOES_NOT_HAVE_UPGRADE_PRIVILIGES
    961.HRESULT:0x8004260CInstance is not upgradable.INSTANCE_IS_NOT_UPGRADABLE
    962.HRESULT:0x8004260DInstance does not support XML type.INSTANCE_DOES_NOT_SUPPORT_XML_TYPE
    963.HRESULT:0x8004260EThe item relationship was not found.ITEM_RELATIONSHIP_NOT_FOUND
    964.HRESULT:0x8004260FThe item associated with an item relationship was not found.ITEM_RELATIONSHIP_ITEM_NOT_FOUND
    965.HRESULT:0x80042610The dataset definition is missing an expected controller membership.DEFINITION_MISSING_CONTROLLER_MEMBERSHIP
    966.HRESULT:0x80042611The catalog item corresponds to an unknown type.UNKNOWN_CATALOG_TYPE
    967.HRESULT:0x80042701The geodatabase doesn’t support unmanaged raster catalogs.DOES_NOT_SUPPORT_UNMANAGED_RASTER_CATALOG
    968.HRESULT:0x80042801No spatial column presentQUERYDESCRIPTION_NOSPATIALCOLUMN
    969.HRESULT:0x80042802Invalid column.QUERYDESCRIPTION_INVALIDCOLUMN
    970.HRESULT:0x80042803OID not a mapped column.QUERYDESCRIPTION_OIDNOTMAPPEDCOLUMN
    971.HRESULT:0x80042804Column exists.QUERYDESCRIPTION_COLUMNEXISTS
    972.HRESULT:0x80042805Invalid field type.QUERYDESCRIPTION_INVALIDFIELDTYPE
    973.HRESULT:0x80042806Oid mapped column has null value.QUERYTABLE_OIDMAPPEDCOLUMNHASNULL
    974.HRESULT:0x80042807Query description out of sync.QUERYDESCRIPTION_OUTOFSYNC
    975.HRESULT:0x80042808Fields used for OID mapping missing.QUERYDESCRIPTION_OIDFIELDSMISSING
    976.HRESULT:0x80042809Geometry type not supported.QUERYDESCRIPTION_INVALIDGEOMETRYTYPE
    977.HRESULT:0x8004280AFailed to parse the where clause.QUERYCLASS_INVALIDWHERE
    978.HRESULT:0x8004280BOid value is unknown.QUERYCLASS_OIDUNKNOWN
    979.HRESULT:0x8004280CQuery missing.QUERYTABLE_QUERYMISSING
    980.HRESULT:0x8004280DWorkspace missing.QUERYTABLE_WORKSPACEMISSING
    981.HRESULT:0x8004280EOid column has null value.QUERYTABLE_OIDCOLUMNHASNULL
    982.HRESULT:0x8004280FGeometry type is null geometry.QUERYCLASS_NULLGEOMETRYTYPE
    983.HRESULT:0x80042810Srid is invalid.QUERYCLASS_INVALIDSRID
    984.HRESULT:0x80042811Spatial reference is invalid.QUERYCLASS_INVALIDSPATIALREFERENCE
    985.HRESULT:0x80042812Class name is invalid.QUERYCLASS_INVALIDNAME
    986.HRESULT:0x80042851Unable to obtain origin primary key value.RELCLASS_COULD_NOT_GET_ORIG_PRIM_KEY
    987.HRESULT:0x80042852Unable to obtain origin foreign key value.RELCLASS_COULD_NOT_GET_ORIG_FOR_KEY
    988.HRESULT:0x80042853Unable to obtain destination primary key value.RELCLASS_COULD_NOT_GET_DEST_PRIM_KEY
    989.HRESULT:0x80042854Unable to obtain destination foreign key value.RELCLASS_COULD_NOT_GET_DEST_FOR_KEY
    990.HRESULT:0x80042855The relationship class is incompatible with an existing relationship class.RELCLASS_INCOMPATIBLE_WITH_EXISTING_RELCLASS
    991.HRESULT:0x80042856Cannot reset foreign keys for an existing relationship row.RELCLASS_CANNOT_RESET_FKEYS
    992.HRESULT:0x80042857Invalid foreign key value.RELCLASS_INVALID_FKEY
    993.HRESULT:0x80042858QueryDef-based search returned an invalid cursor.RELCLASS_INVALID_CURSOR
    994.HRESULT:0x80042859The relationship class was not found.RELATIONSHIPCLASS_NOT_FOUND
    995.HRESULT:0x8004285AInvalid relationship class name.RELATIONSHIPCLASS_INVALID_NAME
    996.HRESULT:0x8004285BThe relationship class already exists.RELATIONSHIPCLASS_ALREADY_EXISTS
    997.HRESULT:0x8004285CInvalid relationship class specification.RELATIONSHIPCLASS_INVALID_SPEC
    998.HRESULT:0x8004285DCannot open origin or destination class of this relationship class.RELATIONSHIPCLASS_ORIGIN_DEST_NOT_FOUND
    999.HRESULT:0x8004285EThe replace command cannot be completed because the attributed relationship row’s origin and/or destination class object does not exist. Ensure that both of the related objects are present before attempting to execute the replace with command.MISSING_ORIGIN_OR_DESTINATION_OBJECT
    1000.HRESULT:0x80042901The connectivity rule is invalid/malformed.INVALID_CONNECTIVITY_RULE
    1001.HRESULT:0x80042902Validation not supported on non-SQL datasets.VALIDATION_NOT_SUPPORTED
    1002.HRESULT:0x80042903The cardinality specified for the connectivity rule is invalid.INVALID_CARDINALITY
    1003.HRESULT:0x80042904Default junctions not supported in this release of the Geodatabase.DEFAULT_JUNCTIONS_NOT_SUPPORTED_IN_RELEASE
    1004.HRESULT:0x80042905Altering this type of validation rule not supported.ALTERING_RULE_NOT_SUPPORTED
    1005.HRESULT:0x80042906Connectivity rules are not supported on simple features.CONNECTIVITY_RULES_NOT_SUPPORTED
    1006.HRESULT:0x80042907Cannot alter a non-existant rule.CANNOT_ALTER_NON_EXISTANT_RULE
    1007.HRESULT:0x80042908Validation rule not found.RULE_NOT_FOUND
    1008.HRESULT:0x80042951Zero-length polylines not allowed.ZERO_LENGTH_POLYLINE
    1009.HRESULT:0x80042952Closed polylines not allowed.CLOSED_POLYLINE
    1010.HRESULT:0x80042953Junction feature does not have network ancillary role.NO_NETWORK_ANCILLARY_ROLE
    1011.HRESULT:0x80042954Flipping polylines not allowed.FLIPPED_POLYLINE
    1012.HRESULT:0x80042955Splitting junction features not allowed.CANNOT_SPLIT_JUNCTION
    1013.HRESULT:0x80042956Invalid network ancillary role.INVALID_NETWORK_ANCILLARY_ROLE
    1014.HRESULT:0x80042957Cannot add an orphan junction on top of an existing junction.CANNOT_ADD_ORPHAN_JUNCTION_ON_EXISTING_JUNCTION
    1015.HRESULT:0x80042958The specified junction index is invalid.INVALID_JUNCTION_INDEX
    1016.HRESULT:0x80042959Unable to set the enabled field associated with a network element.CANNOT_SET_ENABLED_FIELD
    1017.HRESULT:0x8004295AUnable to set the weight field associated with a network element.CANNOT_SET_WEIGHT_FIELD
    1018.HRESULT:0x8004295BAn invalid type of geometry is being set into a complex junction.INVALID_GEOMETRY_FOR_COMPLEX_JUNCTION
    1019.HRESULT:0x8004295CAn invalid geometry type is associated with a network feature class.INVALID_GEOMETRY_TYPE_FOR_NETWORK_FEATURE_CLASS
    1020.HRESULT:0x8004295DThe network feature does not have an associated network element.NO_ASSOCIATED_NETWORK_ELEMENT
    1021.HRESULT:0x8004295EThe edge feature has the same from and to junctions.IDENTICAL_FROM_TO_JUNCTIONS
    1022.HRESULT:0x8004295FThe edge feature is missing either a from or to junction.EDGE_MISSING_ENDPOINT_JUNCTION
    1023.HRESULT:0x80042960The connected edge feature has invalid connectivity.CONNECTED_EDGE_INVALID_CONNECTIVITY
    1024.HRESULT:0x80042961A connected feature has inconsistent connectivity and cannot be corrected.INVALID_CONNECTIVITY_CANNOT_BE_CORRECTED
    1025.HRESULT:0x80042962Invalid network feature class.INVALID_NETWORK_FEATURE_CLASS
    1026.HRESULT:0x80043001The domain was not found.DOMAIN_NOT_FOUND
    1027.HRESULT:0x80043002The domain is used by an attribute rule.DOMAIN_USED_BY_ATTRIBUTE_RULE
    1028.HRESULT:0x80043003The domain is used as a default domain.DOMAIN_USED_AS_DEFAULT_DOMAIN
    1029.HRESULT:0x80043004Domain name already in use.DOMAIN_NAME_ALREADY_EXISTS
    1030.HRESULT:0x80043005The value of the domain exceeds the length of the field.DOMAIN_VALUE_EXCEEDS_FIELD_LENGTH
    1031.HRESULT:0x80043006The existing domain owner does not match that of the updated domain.DOMAIN_OWNER_DOESNT_MATCH
    1032.HRESULT:0x80043007The existing domain field type does not match that of the updated domain.DOMAIN_FIELD_TYPE_DOESNT_MATCH
    1033.HRESULT:0x80043008The domain type is not supported.DOMAIN_TYPE_NOT_SUPPORTED
    1034.HRESULT:0x80043009The value being added to the coded value domain already exists.CODED_VALUE_DOMAIN_VALUE_ALREADY_EXISTS
    1035.HRESULT:0x8004300AClient cocreated domains may not be locked.CANNOT_LOCK_COCREATED_DOMAIN
    1036.HRESULT:0x8004300BThe domain is already used by another workspace.DOMAIN_USED_BY_OTHER_WORKSPACE
    1037.HRESULT:0x8004300CThe domain field type does not match that of the field it is being assigned to.DOMAIN_FIELD_TYPE_MISMATCH
    1038.HRESULT:0x8004300DDomain may not be locked as the user is not the owner.CANNOT_LOCK_DOMAIN_AS_NOT_OWNER
    1039.HRESULT:0x8004300EThe specified default domain was not found.DEFAULT_DOMAIN_NOT_FOUND
    1040.HRESULT:0x8004300FThe domain record was not found.DOMAIN_RECORD_NOT_FOUND
    1041.HRESULT:0x80043010The existing domain type does not match that of the updated domain.DOMAIN_TYPE_DOESNT_MATCH
    1042.HRESULT:0x80043011The name of an entry in the coded value domain is empty.CODED_VALUE_DOMAIN_NAME_EMPTY
    1043.HRESULT:0x80043012The value is not compatible with the field types associated with the coded value domain.CODED_VALUE_DOMAIN_VALUE_NOT_COMPATIBLE
    1044.HRESULT:0x80043013The value type is inconsistent with other associated value types in the coded value domain.CODED_VALUE_DOMAIN_VALUE_INCONSISTENT
    1045.HRESULT:0x80043014The field type is not compatible with the associated value types in the coded value domain.CODED_VALUE_DOMAIN_FIELD_TYPE_NOT_COMPATIBLE
    1046.HRESULT:0x80043015The domain cannot be deleted.CANNOT_DELETE_DOMAIN
    1047.HRESULT:0x80043016The domain name is invalid.DOMAIN_INVALID_NAME
    1048.HRESULT:0x80043017The domain definition is different from the domain of the same name in the workspace.DOMAIN_DOES_NOT_MATCH_WORKSPACE
    1049.HRESULT:0x80043018The domain is incompatible with the existing default value.DOMAIN_INCOMPATIBLE_WITH_DEFAULT_VALUE
    1050.HRESULT:0x80043019The process has timed out while waiting for traffic update downloads.TRAFFIC_DOWNLOAD_TIMEOUT
    1051.HRESULT:0x8004301AAn error was encountered connecting to the dynamic traffic data. Verify that the network dataset’s Traffic Feed property is correctly set and that you have access to this location.REFRESH_DYNAMIC_TRAFFIC_ERROR
    1052.HRESULT:0x80043051Invalid name object.INVALID_NAME_OBJECT
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值