ファイル ジオデータベースの圧縮(Compress File Geodatabase Data) (データの管理)

サマリ

ジオデータベース内のすべてのコンテンツ、フィーチャ データセット内のすべてのコンテンツ、または個別のスタンドアロン フィーチャクラスやテーブルを圧縮します。

使用法

構文

CompressFileGeodatabaseData_management (in_data)
パラメータ説明データ タイプ
in_data

圧縮するジオデータベース、フィーチャ データセット、フィーチャクラス、またはテーブル

Workspace; Feature Dataset; Table View; Raster Layer

コードのサンプル

CompressFileGeodatabaseData(ファイル ジオデータベースの圧縮)の例(Python ウィンドウ)

次の例で、CompressFileGeodatabaseData(ファイル ジオデータベースの圧縮)関数を Python ウィンドウで使用する方法を示します。

import arcpy
arcpy.env.workspace = "C:/data/"
arcpy.CompressFileGeodatabaseData_management("london.gdb")
CompressFileGeodatabaseData(ファイル ジオデータベースの圧縮)の例(スタンドアロン Python スクリプト)

次の例で、CompressFileGeodatabaseData(ファイル ジオデータベースの圧縮)関数をスタンドアロン Python スクリプトで使用する方法を示します。

# Name: CompressFileGeodatabaseData.py
# Description: Use the CompressFileGeodatabaseData tool to compress a geodatabase
# Author: ESRI

# import system modules
import arcpy, os
from arcpy import env

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

# Set local variables
geodatabase = "london.gdb"

try:
  # Process: Compress the data
  arcpy.CompressFileGeodatabaseData_management(geodatabase)

except:
  # If an error occurred while running the tool print the messages
  print arcpy.GetMessages()

環境

関連項目

ライセンス情報

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

7/10/2012