履歴管理の有効化(Enable Archiving) (データ管理)

ライセンス レベル:BasicStandardAdvanced

サマリ

テーブル、フィーチャ レイヤ、またはフィーチャ データセットの履歴管理を無効にします。

使用法

構文

EnableArchiving_management (in_dataset)
パラメータ説明データ タイプ
in_dataset

履歴管理を有効化するデータセットの名前。

Feature Layer; Table View; Feature Dataset

コードのサンプル

EnableArchiving(履歴管理の有効化)の例(Python ウィンドウ)

次のコード スニペットは、Python コマンド ウィンドウで EnableArchiving(履歴管理の有効化)ツールを使用する方法を示しています。

arcpy.EnableArchiving_management("Database Connections//toolbox.county.parcels")
EnableArchiving(履歴管理の有効化)の例(スタンドアロン Python スクリプト)

次のスクリプトは、スタンドアロン スクリプトで EnableArchiving(履歴管理の有効化)ツールを使用する方法を示しています。

# Name: EnableArchiving_Example.py
# Description: Enable archiving on a dataset

# Import system modules
import arcpy

# Set local variables
in_dataset = r'Database Connections\Redlands.sde\TEST.TOOLBOX.rdlsstreets'

# Describe the properties of the dataset to see if archiving is enabled.
desc = arcpy.Describe(in_dataset)
isArch = desc.IsArchived

# Enable Archiving if it is not already enabled.
if isArch == False:
    # Execute EnableArchiving
    arcpy.EnableArchiving_management(in_dataset)
    print "{0} has been enabled for archiving.".format(in_dataset)
elif isArch == True:
    # If IsArch = True, then archiving is already enabled
    print "{0} already has archiving enabled.".format(in_dataset)

環境

このツールはジオプロセシング環境を使用していません

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
7/28/2014