Compact (Data Management)

Summary

Compacts a file geodatabase. Compacting rearranges how the geodatabase is stored on disk, often reducing its size and improving performance.

Usage

  • If data entry, deletion, or general editing is frequently performed on a database, the database should be regularly compacted to ensure optimal performance.

  • If a database is open in ArcGIS Pro for editing, it cannot be compacted. To compact the database, remove any layers with a source table or feature class in that database from the Table Of Contents.

  • Dive-in:

    File geodatabases are stored as binary files on a disk drive. As data is added, removed, or edited, these files become fragmented, decreasing overall database performance. The Compact tool is used to rearrange how the database is stored on disk by defragmenting these binary files, reducing the database's size on disk and improving database performance.

Parameters

LabelExplanationData Type
Input Workspace

The file geodatabase to be compacted.

Workspace

Derived Output

LabelExplanationData Type
Updated Input Workspace

The updated input workspace.

Workspace

arcpy.management.Compact(in_workspace)
NameExplanationData Type
in_workspace

The file geodatabase to be compacted.

Workspace

Derived Output

NameExplanationData Type
out_workspace

The updated input workspace.

Workspace

Code sample

Compact example (Python window)

The following Python window script demonstrates how to use the Compact function in immediate mode.

import arcpy
arcpy.Compact_management("c:/landuse.gdb")
Compact example 2 (stand-alone script)

The following stand-alone script is a simple example of how to use the Compact function in a scripting environment.

# Name: Compact_Example.py
# Description: compact a file geodatabase

# Import the system modules
import arcpy

# Set local variables
gdbWorkspace = "C:/data/data.gdb"

arcpy.Compact_management(gdbWorkspace)

Licensing information

  • Basic: Yes
  • Standard: Yes
  • Advanced: Yes

Related topics