Uncompress File Geodatabase Data (Data Management) |
|
Release 9.2
Last modified November 29, 2010 |
![]() ![]() ![]() Print all topics in : "Tools" |
Uncompresses file geodatabase data.
Usage tips
You can uncompress a geodatabase, feature dataset, standalone feature class or table. 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 re-compress or uncompress the feature dataset so all its feature classes are either compressed or uncompressed.
To learn more about file geodatabase compression, see About compressing file geodatabase data.
The following environment settings affect this tool: workspace.
Command line syntax
An overview of the Command Line window
UncompressFileGeodatabaseData_management <in_data> {config_keyword}
Parameter | Explanation | Data Type |
<in_data> |
The geodatabase, feature dataset, feature class, or table to uncompress. |
Geodatabase|Feature dataset |Feature class|Table |
{config_keyword} |
The configuration keyword defining how the data will store once uncompressed |
String |
UncompressFileGeodatabaseData "d:\london.gdb\building" #
Scripting syntax
About getting started with writing geoprocessing scripts
UncompressFileGeodatabaseData_management (in_data, config_keyword)
Parameter | Explanation | Data Type |
in_data (Required) |
The geodatabase, feature dataset, feature class, or table to uncompress. |
Geodatabase|Feature dataset |Feature class|Table |
config_keyword (Optional) |
The configuration keyword defining how the data will store once uncompressed |
String |
# Create the Geoprocessor object import arcgisscripting gp = arcgisscripting.create() gp.UncompressFileGeodatabaseData ("d:\london.gdb\building", "#")