インデックスの削除(Drop Index) (カバレッジ)

サマリ

指定したアイテムおよび INFO テーブルから属性インデックスを削除します。

使用法

構文

DropIndex_arc (in_info_table, {index_item})
パラメータ説明データ タイプ
in_info_table

インデックスを削除するアイテムのある INFO テーブルの名前。

Arcinfo Table
index_item
[index_item,...]
(オプション)

削除するアイテム インデックスを入力 INFO テーブルから選択します。インデックス アイテムを指定しない場合は、そのファイルのすべてのアイテム インデックスが削除されます。

[アイテムの追加] ボタンは ModelBuilder でのみ使用され、ダイアログ ボックスを完了してモデルの作成を続行できるように、必要なアイテムが追加されます。

ArcInfo Item

コードのサンプル

DropIndex(インデックスの削除)の例(スタンドアロン スクリプト)

次のスタンドアロン スクリプトは、カバレッジのポリゴン属性テーブルのアイテムからインデックスを削除する方法を示しています。

# Name: DropIndex_Example.py
# Description: Drops the index from an item in a polygon featureclass
# Requirements: ArcInfo Workstation

# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"

# Set local variables
inInfoTable = "tongass1/polygon"
indexItem = "IN-FISH"

# Execute DropIndex
arcpy.DropIndex_arc(inInfoTable, indexItem)

環境

関連項目

ライセンス情報

ArcView: いいえ
ArcEditor: いいえ
ArcInfo: 必須 ArcInfo Workstation がインストールされていること

7/10/2012