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

Re-Export Unacknowledged Messages (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

Creates an output delta file containing unacknowledged replica updates from a one-way or two-way replica geodatabase

Learn more about synchronizing disconnected replicas


Usage tips

Command line syntax
An overview of the Command Line window
ReExportUnacknowledgedMessages_management <in_geodatabase> <output_delta_file> <in_replica> <ALL_UNACKNOWLEDGED | MOST_RECENT>

Parameter Explanation Data Type
<in_geodatabase>

Specifies the replica geodatabase from which to re-export the unacknowledged messages. The geodatabase may be local or remote.

Workspace | GeoDataServer|GPComposite type
<output_delta_file>

Specifies the delta file in which to re-export data changes.

File
<in_replica>

The replica from which the unacknowledgement messages will be re-exported.

String
<ALL_UNACKNOWLEDGED | MOST_RECENT>

ALL_UNACKNOWLEDGED - re-exports all changes for which there has been no acknowledgement message received.

MOST_RECENT - re-rexports only those changes since the last set of exported changes was sent.

String
Data types for geoprocessing tool parameters


Command line example

ReExportUnacknowledgedMessages Countries.mdb d:\delta.mdb MyReplica1 ALL_UNACKNOWLEDGED

Scripting syntax
About getting started with writing geoprocessing scripts
ReExportUnacknowledgedMessages_management (in_geodatabase, output_delta_file, in_replica, in_export_option)

Parameter Explanation Data Type
in_geodatabase (Required)

Specifies the replica geodatabase from which to re-export the unacknowledged messages. The geodatabase may be local or remote.

Workspace | GeoDataServer|GPComposite type
output_delta_file (Required)

Specifies the delta file in which to re-export data changes.

File
in_replica (Required)

The replica from which the unacknowledgement messages will be re-exported.

String
in_export_option (Required)

ALL_UNACKNOWLEDGED - re-exports all changes for which there has been no acknowledgement message received.

MOST_RECENT - re-rexports only those changes since the last set of exported changes was sent.

String

Data types for geoprocessing tool parameters


Script example

# Create the Geoprocessor object
import arcgisscripting, sys, scripting, os
gp = arcgisscripting.create()

# Set the necessary product code
gp.SetProduct("ArcInfo")

# Load required toolboxes...
gp.AddToolbox("Data Management Tools.tbx")

# Process: Re-Export Unacknowledged Messages...
gp.ReExportUnacknowledgedMessages_management("Countries.mdb", "d:\delta.mdb", "MyReplica1", "ALL_UNACKNOWLEDGED")

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