ListReplicas

Resumen

Enumera las réplicas del espacio de trabajo.

Debate

Puede especificar la ruta a un archivo de conexión como un argumento a la función, o bien puede definir el entorno de espacio de trabajo al archivo de conexión y llamar a la función ListReplicas sin ningún argumento.

Sintaxis

ListReplicas (workspace, {all_replicas})
ParámetroExplicaciónTipo de datos
workspace

A geodatabase workspace.

String
all_replicas

Specifies whether to return all replica types in the geodatabase.

  • True—Return all types of replicas. This may include Replica or SyncReplica objects.
  • False—Return only Replica objects. These include replicas created from geodatabase replication workflows as well as replicas created from feature services running on traditional versioned data. This is the default.

(El valor predeterminado es False)

Boolean
Valor de retorno
Tipo de datosExplicación
Replica

Una lista devuelta de la función que contiene objetos de Replica.

Si el argumento all_replicas se ha establecido en True, también pueden devolverse objetos SyncReplica.

Muestra de código

Ejemplo 1 de ListReplicas

Para cada réplica remitente del espacio de trabajo, invoque la función 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)
Ejemplo 2 de ListReplicas

Imprima todas las réplicas en conflicto.

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)
Ejemplo 3 de ListReplicas

Imprimir las propiedades de un objeto 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))

Temas relacionados


En este tema