pg_vacuum_analyze
Run VACUUM ANALYZE on a PostgreSQL table to clean dead tuples and update query statistics, blocked when read-only mode is enabled.
Instructions
Run VACUUM ANALYZE on a table to clean dead tuples and update database statistics. Blocked when that connection's own readOnly mode is enabled.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table | Yes | Table to vacuum/analyze | |
| schema | No | Schema to filter by. Defaults to the connection's defaultSchema (or 'public'). | |
| connectionId | No | Id of the postgres connection to use, from databases.config.yml. Optional when only one postgres connection is configured. |