サマリー
テーブル、フィーチャ レイヤー、またはフィーチャ データセットの履歴管理を有効にします。
使用法
履歴管理を有効化すると、時間の経過に伴うデータセットに対する変更を記録し、その履歴情報にアクセスできます。
履歴管理はエンタープライズ ジオデータベースのみでサポートされています。ファイルおよびパーソナル ジオデータベースは、履歴管理をサポートしていません。
履歴管理は、バージョン対応登録されたデータまたはバージョン非対応データで有効化できます。
構文
EnableArchiving_management (in_dataset)
パラメーター | 説明 | データ タイプ |
in_dataset | 履歴管理を有効化するデータセットの名前。 | Table; Feature Class; Feature Dataset |
派生した出力
名前 | 説明 | データ タイプ |
out_dataset | テーブル; フィーチャクラス; フィーチャ データセット |
コードのサンプル
EnableArchiving (履歴管理の有効化) の例 1 (Python ウィンドウ)
次のコード スニペットは、Python ウィンドウで EnableArchiving (アタッチメントの削除) ツールを使用する方法を示しています。
arcpy.EnableArchiving_management("Database Connections//toolbox.county.parcels")
EnableArchiving (履歴管理の有効化) の例 2 (スタンドアロン スクリプト)
次のスクリプトは、スタンドアロン スクリプトで EnableArchiving ツールを使用する方法を示しています。
# Name: EnableArchiving_Example.py
# Description: Enable archiving on a dataset
# Import system modules
import arcpy
# Set local variables
in_dataset = 'C:/Data/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 Desktop Basic: いいえ
- ArcGIS Desktop Standard: はい
- ArcGIS Desktop Advanced: はい