Delete Version (Data Management)

License Level:BasicStandardAdvanced

Summary

Deletes the specified version from the input workspace.

Usage

Syntax

DeleteVersion_management (in_workspace, version_name)
ParameterExplanationData Type
in_workspace

The enterprise geodatabase containing the version to be deleted. The default is to use the workspace defined in the Current Workspace environment.

Workspace
version_name

The name of the version to be deleted.

String

Code Sample

DeleteVersion example (stand-alone script)

The following stand-alone script demonstrates how use the DeleteVersion tool to delete a version.

# Name: DeleteVersion_Example.py
# Description: Deletes a version

# Import system modules
import arcpy

# Set local variables
inWorkspace = "Database Connections/whistler@gdb.sde"
newName = "myVersion2"

# Execute DeleteVersion
arcpy.DeleteVersion_management(inWorkspace, newName)

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
11/18/2013