Résumé
Répertorier les réplicas dans l'espace de travail.
Discussion
Vous pouvez définir le chemin d'accès à un fichier de connexion comme argument de la fonction ou définir l'environnement de l'espace de travail sur le fichier de connexion et appeler la fonction ListReplicas sans aucun argument.
Syntaxe
ListReplicas (workspace, {all_replicas})
Paramètre | Explication | Type de données |
workspace | A geodatabase workspace. | String |
all_replicas | Specifies whether to return all replica types in the geodatabase.
(La valeur par défaut est False) | Boolean |
Type de données | Explication |
Replica | Une liste est renvoyée par la fonction contenant les objets Replica. Si l’argument all_replicas a été défini sur True, les objets SyncReplica peuvent également être renvoyés. |
Exemple de code
Pour chaque réplica émetteur d’un espace de travail, appelez la fonction ExportDataChangeMessage.
import arcpy
import os
sdeConnection = "C:/Data/toolboxDEFAULTVersion.sde"
outLocation = "C:/data"
for replica in arcpy.da.ListReplicas(sdeConnection):
# If the replica is a sender, call ExportDataChangeMessage
if replica.isSender:
changesFile = os.path.join(outputLocation,
"changes_{0}.gdb".format(replica.name))
arcpy.ExportDataChangeMessage_management(sdeConnection,
changes,
replica.name)
Imprimez tous les réplicas qui sont en conflit.
import arcpy
sdeConnection = "C:/Data/toolboxDEFAULTVersion.sde"
# Print the name of the replicas that are in conflict
#
for replica in arcpy.da.ListReplicas(sdeConnection):
if replica.hasConflicts:
print(replica.name)
Imprimer les propriétés d’un objet SyncReplica
# Import required modules
import arcpy
# Use the ListReplicas function to return all replicas in the geodatabase
replicas = arcpy.da.ListReplicas("C:\\Projects\\MyProject\\myGDB.sde", True)
for r in replicas:
# Check if the class is a SyncReplica
if isinstance(r, arcpy.da.SyncReplica):
# Print the properties of a SyncReplica object
print("Properties of replica named: {}".format(r.name))
print("Datasets: {}".format(r.datasets))
print("Owner: {}".format(r.owner))
print("Replica ID: {}".format(r.replicaID))
print("Service name: {}".format(r.serviceName))
print("Version: {}".format(r.version))
print("Direction: {}".format(r.direction))
print("Sync model: {}".format(r.syncModel))
print("Last sync date: {}".format(r.lastSyncDate))
print("LayerServerGens: {}".format(r.layerServerGens))
print("LayerServerSibGens: {}".format(r.layerServerSibGens))
print("ReplicaServerGen: {}".format(r.replicaServerGen))
print("ReplicaServerSibGen: {}".format(r.replicaServerSibGen))
print("Target type: {}".format(r.targetType))
Rubriques connexes
Vous avez un commentaire à formuler concernant cette rubrique ?