Summary
Uncompresses all the contents in a geodatabase, all the contents in a feature dataset, or an individual stand-alone feature class or table.
Usage
When you uncompress a geodatabase, all feature classes and tables within it uncompress.
When you uncompress a feature dataset, all its feature classes uncompress.
You cannot individually compress or uncompress a feature class in a feature dataset to produce a mixed state where some feature classes are compressed and others are not. Compressed feature datasets allow you to add an uncompressed feature class through operations such as creating a new, empty feature class, copying and pasting, and importing. However, you cannot edit the uncompressed feature class if there are compressed feature classes in the same feature dataset. Once you've finished adding one or more uncompressed feature classes, you can recompress or uncompress the feature dataset so all its feature classes are either compressed or uncompressed.
Syntax
UncompressFileGeodatabaseData(in_data, {config_keyword})
Parameter | Explanation | Data Type |
in_data | The geodatabase, feature dataset, feature class, or table to uncompress. | Workspace; Feature Dataset; Table View; Raster Layer; Geometric Network |
config_keyword (Optional) | The configuration keyword defining how the data will store once uncompressed | String |
Derived Output
Name | Explanation | Data Type |
out_data | The uncompressed input data. | Workspace; Feature Dataset; Table View; Raster Layer; Geometric Network |
Code sample
UncompressFileGeodatabaseData example 1 (Python window)
The following example demonstrates how to use the UncompressFileGeodatabaseData function in the Python window.
import arcpy
arcpy.env.workspace = "C:/data"
arcpy.UncompressFileGeodatabaseData_management("london.gdb")
UncompressFileGeodatabaseData example 2 (stand-alone script)
The following example demonstrates how to use the UncompressFileGeodatabaseData function in a standalone Python script.
# Name: UncompressFileGeodatabaseData.py
# Description: Use the UncompressFileGeodatabaseData tool to uncompress a geodatabase
# import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/data"
# Set local variables
geodatabase = "london.gdb"
# Process: Compress the data
arcpy.UncompressFileGeodatabaseData_management(geodatabase)
Environments
Licensing information
- Basic: Yes
- Standard: Yes
- Advanced: Yes