Show Navigation | Hide Navigation
You are here:
Geoprocessing tool reference > Data Management toolbox > Disconnected Editing toolset > Tools

Check In (Data Management)

Release 9.2
Last modified November 29, 2010
E-mail This Topic Printable Version Give Us Feedback

Print all topics in : "Tools"


Related Topics

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

Note that this tool is designed for check-out replicas only and should only be used to support applications from earlier releases. It is recommended that you use the synchronize changes tool in place of this tool.


Usage tips

Command line syntax
An overview of the Command Line window
Checkin_management <in_workspace> <dest_workspace> {NON_RECONCILE | RECONCILE}

Parameter Explanation Data 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
{NON_RECONCILE | RECONCILE}

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

  • NON_RECONCILE — there is no reconcile performed. This is the default.
  • RECONCILE — There is a reconciliation performed.

Boolean
Data types for geoprocessing tool parameters


Command line example

CheckIn_management d:\workspace.mdb "Database Connections\Connection to workspace.sde" NO_RECONCILE

Scripting syntax
About getting started with writing geoprocessing scripts
Checkin_management (in_workspace, dest_workspace, reconcile)

Parameter Explanation Data Type
in_workspace (Required)

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

Workspace
dest_workspace (Required)

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_RECONCILE — there is no reconcile performed. This is the default.
  • RECONCILE — There is a reconciliation performed.

Boolean

Data types for geoprocessing tool parameters


Script example

import arcgisscripting
gp = arcgisscripting.create()

gp.toolbox = "management"
gp.CheckIn("d:\workspace.mdb", "Database Connections\Connection to workspace.sde", "NO_RECONCILE")

Please visit the Feedback page to comment or give suggestions on ArcGIS Desktop Help.
Copyright © Environmental Systems Research Institute, Inc.