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

Check In from Delta (Data Management) (ArcInfo and ArcEditor only)

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

Print all topics in : "Tools"


Related Topics

Imports changes from a delta file into the parent replica. A delta file contains only the changes exported from a child replica 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 import message tool in place of this tool.


Usage tips

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

Parameter Explanation Data Type
<in_delta_database>

The delta file that contains the changes to be synchronized.

File
<dest_workspace>

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

Workspace
{NON_RECONCILE | RECONCILE}

Indicates whether the synchronize 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

CheckInDelta_management c:\data\housing.mdb "Database Connections\Connection to workspace.sde" NO_RECONCILE

Scripting syntax
About getting started with writing geoprocessing scripts
CheckinDelta_management (in_delta_database, dest_workspace, reconcile)

Parameter Explanation Data Type
in_delta_database (Required)

The delta file that contains the changes to be synchronized.

File
dest_workspace (Required)

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

Workspace
reconcile (Optional)

Indicates whether the synchronize 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.workspace = "c:/test_data"
gp.toolbox = "management"
gp.checkindelta("housing.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.