ファイル ジオデータベースの回復(Recover File Geodatabase) (データ管理)
使用法
[ファイル ジオデータベースの回復(Recover File Geodatabase)] ツールが復元できるのは、単純なフィーチャクラスとテーブルだけです。複雑なデータやリレーションシップは復元できません。
構文
RecoverFileGDB_management (input_file_gdb, output_location, out_name)
パラメータ | 説明 | データ タイプ |
input_file_gdb |
破損した入力ファイル ジオデータベース。 | Workspace |
output_location |
復元したファイル ジオデータベースの出力フォルダの場所。 | Folder |
out_name |
出力ファイル ジオデータベースの名前。 | String |
コードのサンプル
RecoverFileGDB(ファイル ジオデータベースの回復)の例 1(Python ウィンドウ)
次の Python ウィンドウ スクリプトは、イミディエイト モードで RecoverFileGDB(ファイル ジオデータベースの回復)ツールを使用する方法を示しています。
arcpy.RecoverFileGDB_management('C:/fgdb/Whistler.gdb', 'C:/recoveredData', 'recoveredWhistler.gdb')
RecoverFileGDB(ファイル ジオデータベースの回復)の例 2(スタンドアロン スクリプト)
次の Python スクリプトは、スタンドアロン スクリプトで RecoverFileGDB(ファイル ジオデータベースの回復)を使用する方法を示しています。このスクリプトは、使用しないテーブルをクリーンアップします。
# Name: RecoverFileGeodatabase.py
# Description: Use the RecoverFileGeodatabase tool to recover the data
# contained in a damaged file geodatabase.
# Import system modules
import arcpy, os
from arcpy import env
# Set local variables
geodatabase = "C:/fgdb/Whistler.gdb"
output_location = "C:/recoveredData"
recovered_name = "recoveredWhistler.gdb"
try:
# Process: Recover the data
arcpy.RecoverFileGDB_management(geodatabase, output_location, recovered_name)
except:
# If an error occurred while running the tool print the messages
print arcpy.GetMessages()
環境
このツールはジオプロセシング環境を使用していません
ライセンス情報
ArcGIS for Desktop Basic: ○
ArcGIS for Desktop Standard: ○
ArcGIS for Desktop Advanced: ○
7/28/2014