Register with Geodatabase (Data Management)
Summary
Registers feature classes, tables, and raster layers that were created outside of the geodatabase with the geodatabase in order for them to fully participate in geodatabase functionality.
Usage
-
Feature classes, tables, and raster layers created outside of the geodatabase can be registered with the geodatabase using this tool.
-
Before a feature class, table, or raster feature class can fully participate in all geodatabase functionality, it must be registered with the geodatabase. If it is not registered with the geodatabase, only limited functionality will be available.
Syntax
Parameter | Explanation | Data Type |
in_dataset |
Feature classes, tables, or raster feature classes created outside of the geodatabase are supported. | Raster Layer; Table View |
Code Sample
The following Python window script demonstrates how to use the RegisterWithGeodatabase function in immediate mode.
import arcpy from arcpy import env env.workspace = "Database Connections\Connection to gpserver.sde" arcpy.RegisterWithGeodatabase_management(r'TOOLBOX.REGGDB_LZ77')
The following stand-alone script is a simple example of how to apply the RegisterWithGeodatabase function in scripting.
# RegisterWithGeodatabase.py # Description: Simple example showing use of RegisterWithGeodatabase tool # Author: ESRI # Import system modules import arcpy # Set variables inTable = r"c:\connectionFiles\Connection to esriServer.sde\redlandsStreets" #Process: Use the CreateArcSDEConnectionFile function arcpy.RegisterWithGeodatabase_management (inTable)