Skip to main content

VACUUM

Perform maintenance tasks, including updating inverted indexes after data changes.

Syntax

Parameters

ParameterDescription
table_nameThe table to vacuum
UPDATE_INDEXESRebuild and optimize inverted indexes on the table

Examples

Basic vacuum

VACUUM articles;

Update inverted indexes

After inserting or modifying data in a table with inverted indexes:

VACUUM (UPDATE_INDEXES) articles;

See also