Check In (Data Management)

License Level:BasicStandardAdvanced

Summary

Synchronizes changes from a check-out replica in an ArcSDE, file, or personal geodatabase to the parent ArcSDE geodatabase.

Usage

Syntax

Checkin_management (in_workspace, dest_workspace, {reconcile})
ParameterExplanationData Type
in_workspace

The child replica geodatabase. The workspace that contains the child replica. This can be an ArcSDE, file, or personal geodatabase.

Workspace
dest_workspace

The parent replica geodatabase. The ArcSDE workspace to which changes will be applied.

Workspace
reconcile
(Optional)

Indicates whether the synchronization process should reconcile the synchronization version after the edits have been synchronized.

  • NON_RECONCILEThere is no reconcile performed. This is the default.
  • RECONCILEThere is a reconciliation performed.
Boolean

Code Sample

CheckIn Example (Python Window)
import arcpy
from arcpy import env
env.workspace = "C:/Data"
arcpy.gp.Checkin("MyCheckout.mdb", "MySDEdata.sde", "RECONCILE")

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
5/7/2015