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 for 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

Add Global IDs

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

Summary

Adds global IDs to a list of geodatabase feature classes, tables, and/or feature datasets.

Usage

  • GlobalIDs uniquely identify a feature or table row within a geodatabase and across geodatabases.

  • GlobalIDs are required for two-way and one-way replication.

Syntax

AddGlobalIDs(in_datasets)
ParameterExplanationData Type
in_datasets
[in_dataset,...]

A list of geodatabase classes, tables, and/or feature datasets to which global IDs will be added.

Layer; Table View; Dataset

Derived Output

NameExplanationData Type
out_datasets

The updated datasets.

Layer; Table View; Dataset

Code sample

AddGlobalIDs example 1 (Python window)

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

import arcpy
arcpy.env.workspace = "C:/data/MySDEdata.sde" 
arcpy.AddGlobalIDs_management("GDB1.Heather.Roads")
AddGlobalIDs example 2 (stand-alone script)

The following Python script demonstrates how to use the AddGlobalIDs function with an enterprise feature class.

# Name: AddGlobalIDs_Example2.py
# Description: Add globalIDs to a feature class. The feature class is in an enterprise workspace.

# Import system modules
import arcpy

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

# Set local variables
in_dataset = "GDB1.Heather.Roads"

# Execute AddGlobalIDs
arcpy.AddGlobalIDs_management(in_dataset)
AddGlobalIDs example 3 (stand-alone script)

The following Python script demonstrates how to use the AddGlobalIDs function with multiple enterprise feature classes.

# Name: AddGlobalIDs_Example2.py
# Description: Add globalIDs to a list of datasets. Both feature classes are in the same enterprise workspace.

# Import system modules
import arcpy

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

# Set local variables
in_dataset1 = "GDB1.Heather.Roads"
in_dataset2 = "GDB1.Heather.Streets"

# Execute AddGlobalIDs
arcpy.AddGlobalIDs_management([in_dataset1, in_dataset2])

Environments

  • Current Workspace
  • Scratch Workspace

Licensing information

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

Related topics

  • An overview of the Distributed Geodatabase toolset
  • Working with geodatabase replicas
  • ArcGIS field data types
  • Preparing data for replication
  • Replica creation and versioning

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS Platform

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

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