Export Acknowledgement Message (Data Management)

Summary

Creates an output acknowledgement file to acknowledge the reception of previously received data change messages.

Usage

Syntax

ExportAcknowledgementMessage_management (in_geodatabase, out_acknowledgement_file, in_replica)
ParameterExplanationData Type
in_geodatabase

Specifies the replica geodatabase from which to export the acknowledgement message. The geodatabase may be local or remote.

Workspace ; GeoDataServer
out_acknowledgement_file

Specifies the delta file to export to.

File
in_replica

The replica from which the acknowledgement message will be exported.

String

Code Sample

ExportAcknowledgement Example (Python Window)
import arcpy
from arcpy import env
env.workspace = "C:/Data"
arcpy.ExportAcknowledgementMessage_management("MySDEdata.sde", "AcknowledgementMessage.xml" , "MyReplica1")
ExportAcknowledgement Example 2 (stand-alone Python script)
# Name: ExportAcknowledgement_Example2.py
# Description: Exports an acknowledgement message from a replica geodatabase (SDE).
# Author: ESRI

# Import system modules
import arcpy
from arcpy import env

# Set workspace
env.workspace = "C:/Data"

# Set local variables
in_geodatabase = "MySDEdata.sde"
output_file = "AcknowledgementMessage.xml"
replica_name = "MyReplica1"
arcpy.ExportAcknowledgementMessage_management(in_geodatabase, output_file , replica_name)

Environments

Related Topics

Licensing Information

ArcView: No
ArcEditor: Yes
ArcInfo: Yes

10/27/2014