Export Acknowledgement Message (Data Management) (ArcInfo and ArcEditor only) |
|
Release 9.2
Last modified November 29, 2010 |
![]() ![]() ![]() Print all topics in : "Tools" |
Creates an output acknowledgement file to acknowledge the reception of previously received data change messages.
Learn more about synchronizing disconnected replicas
Usage tips
This tool is only applicable when using replication in disconnected mode.
This tool is not applicable 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
ExportAcknowledgementMessage_management <in_geodatabase> <out_acknowledgement_file> <in_replica>
Parameter | Explanation | Data Type |
<in_geodatabase> |
Specifies the replica geodatabase from which to export the acknowledgement message. The geodatabase may be local or remote. |
Workspace |GeoDataServer|GPComposite |
<out_acknowledgement_file> |
Specifies the delta file to export to. |
File |
<in_replica> |
The replica from which the acknowledgement message will be exported. |
String |
ExportAcknowledgementMessage Parcels.mdb d:\delta.mdb MyReplica1
Scripting syntax
About getting started with writing geoprocessing scripts
ExportAcknowledgementMessage_management (in_geodatabase, out_acknowledgement_file, in_replica)
Parameter | Explanation | Data Type |
in_geodatabase (Required) |
Specifies the replica geodatabase from which to export the acknowledgement message. The geodatabase may be local or remote. |
Workspace |GeoDataServer|GPComposite |
out_acknowledgement_file (Required) |
Specifies the delta file to export to. |
File |
in_replica (Required) |
The replica from which the acknowledgement message will be exported. |
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: Export Acknowledgement Message... gp.ExportAcknowledgementMessage_management("Database Connections\Connection to workspace.sde", "d:\delta.mdb" , "MyReplica1")