ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Create Replica Footprints

  • Summary
  • Usage
  • Syntax
  • Code sample
  • Environments
  • Licensing information

Summary

Creates a feature class that contains the geometries for all the replicas in a geodatabase. Attributes in the feature class store the information from the replica manager.

Usage

  • The output feature class can be any geodatabase feature class (file, personal, or enterprise).

Syntax

arcpy.management.CreateReplicaFootPrints(in_workspace, out_workspace, output_featureclass_name)
ParameterExplanationData Type
in_workspace

The geodatabase containing the replicas from which you would like to create the replica footprint. The geodatabase must be a local geodatabase; it cannot be a geodata service.

Workspace
out_workspace

The output geodatabase that will hold the replica footprints feature class once it is created. The geodatabase may be local or remote.

Workspace
output_featureclass_name

The name of the replica footprints feature class to be created.

String

Code sample

CreateReplicaFootprints example (Python window)

The following Python Window script demonstrates how to use the CreateReplicaFootprints function in the Python window.

import arcpy
arcpy.env.workspace = "C:/Data/MySDEdata.sde"
arcpy.CreateReplicaFootprints_management(arcpy.env.workspace, arcpy.env.workspace, "replicaFootprints")
CreateReplicaFootprints example 2 (stand-alone script)

The following Python script demonstrates how to use the CreateReplicaFootprints function in a stand-alone script.

# Name CreateReplicaFootprints_Example2.py
# Description: Creates a replica footprints feature class for an enterprise workspace.  
# The output FC is stored in the same enterprise workspace.

# Import system modules
import arcpy

# Set workspace
arcpy.env.workspace = "C:/Data/MySDEdata.sde"

# Set local variables
out_FC = "replicaFootprints"
arcpy.CreateReplicaFootprints_management(arcpy.env.workspace, arcpy.env.workspace, out_FC)

Environments

  • Current Workspace
  • Output CONFIG Keyword
  • Extent
  • Scratch Workspace

Licensing information

  • Basic: No
  • Standard: Yes
  • Advanced: Yes

Related topics

  • An overview of the Distributed Geodatabase toolset
  • Working with geodatabase replicas
  • A quick tour of replica management
  • Creating replica footprints

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal