Re-Export Unacknowledged Messages (Data Management) (ArcInfo and ArcEditor only) |
|
Release 9.2
Last modified November 29, 2010 |
![]() ![]() ![]() Print all topics in : "Tools" |
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
This tool is used when using replication in disconnected mode. Additionally see the Import Message, Export Acknowledgement Message and Re-Export Unacknowledged Messages tools. To synchronize replicas in a connected mode see the Synchronize Changes tool.
This command is not available for check-out replicas
The following environment settings affect this tool: workspace, scratch workspace, and Configuration keyword.
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 |
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 |
# 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")