恢复文件地理数据库 (Data Management)

许可等级:BasicStandardAdvanced

摘要

从已损坏的文件地理数据库中恢复数据。

了解有关恢复文件地理数据库工作原理的详细信息

用法

语法

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: 是
5/10/2014