Recover File Geodatabase (Data Management)

License Level:BasicStandardAdvanced

Summary

Recovers data from a file geodatabase that has become corrupt.

Learn more about how Recover File Geodatabase works

Usage

Syntax

RecoverFileGDB_management (input_file_gdb, output_location, out_name)
ParameterExplanationData Type
input_file_gdb

Input corrupt file geodatabase.

Workspace
output_location

Output folder location for the recovered file geodatabase.

Folder
out_name

Name for the output file geodatabase.

String

Code Sample

RecoverFileGDB example 1 (Python window)

The following Python window script demonstrates how to use the RecoverFileGDB tool in immediate mode.

arcpy.RecoverFileGDB_management('C:/fgdb/Whistler.gdb', 'C:/recoveredData', 'recoveredWhistler.gdb')
RecoverFileGDB example 2 (Stand-alone script)

The following Python window script demonstrates how to use the RecoverFileGDB in a stand alone script. This script will clean up non-useful tables.

# 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()

Environments

This tool does not use any geoprocessing environments

Licensing Information

ArcGIS for Desktop Basic: Yes
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
5/7/2015