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
RegisterWithGeodatabase_management (in_dataset)
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
RegisterWithGeodatabase example 1 (Python window)
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')
RegisterWithGeodatabase example 2 (stand-alone script)
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
# 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)
Environments
Licensing information
- ArcGIS for Desktop Basic: No
- ArcGIS for Desktop Standard: Yes
- ArcGIS for Desktop Advanced: Yes