アタッチメントの無効化(Disable Attachments) (データ管理)
サマリ
ジオデータベース フィーチャクラスまたはテーブルでアタッチメントを無効化します。アタッチメント リレーションシップ クラスとアタッチメント テーブルを削除します。
使用法
-
このツールは、ジオデータベースに内部的に格納されているアタッチメントと、入力データセットに関連付けられているアタッチメントをすべて削除します。アタッチメントを無効化した後に有効化すると、以前にフィーチャクラスまたはテーブルに関連付けられていたアタッチメントは失われます。
ジオデータベース フィーチャクラスまたはテーブルでアタッチメントが有効化されていない場合は、警告メッセージが表示され、処理は実行されません。
構文
DisableAttachments_management (in_dataset)
パラメータ | 説明 | データ タイプ |
in_dataset |
アタッチメントを無効化するジオデータベース テーブルまたはフィーチャクラス。入力は、バージョン 10 以降のジオデータベースに存在している必要があります。 | Table View |
コードのサンプル
DisableAttachments(アタッチメントの無効化)の例(Python ウィンドウ)
次のコード スニペットは、Python ウィンドウで DisableAttachments(アタッチメントの無効化)ツールを使用する方法を示しています。
import arcpy
arcpy.DisableAttachments_management(r"C:\Data\City.gdb\Parcels")
DisableAttachments(アタッチメントの無効化)の例(スタンドアロン Python スクリプト)
次のスクリプトは、スタンドアロン スクリプトで DisableAttachments(アタッチメントの無効化)ツールを使用する方法を示しています。
## GDB Attachments are no longer required, so disable attachments on the input dataset
import arcpy, os, sys
# set the geoprocessing workspace to the feature dataset LandRecord in the geodatabase City.gdb
arcpy.env.workspace = r"C:\Data\City.gdb\LandRecord"
input = "Parcels"
# use DisableAttachments to delete all attachment files from the gdb and disable attachment handling
try:
arcpy.DisableAttachments_management(input)
except:
print arcpy.GetMessages(2)
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
9/14/2013