バージョンの削除(Delete Version) (データの管理)

サマリ

入力ワークスペースから指定のバージョンを削除します。

使用法

構文

DeleteVersion_management (in_workspace, version_name)
パラメータ説明データ タイプ
in_workspace

削除するバージョンを含む ArcSDE ジオデータベース。デフォルトでは、[現在のワークスペース] 環境で定義されたワークスペースを使用します。

Workspace
version_name

削除するバージョンの名前。

String

コードのサンプル

DeleteVersion(バージョンの削除)の例(スタンドアロン スクリプト)

次のスタンドアロン スクリプトは、DeleteVersion(バージョンの削除)ツールを使用してバージョンを削除する方法を示しています。

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

# Import system modules
import arcpy

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

# Execute DeleteVersion
arcpy.DeleteVersion_management(inWorkspace, newName)

環境

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: はい
ArcInfo: はい

7/10/2012