PostgreSQL Last Vacuum
Last Modified: 2023-07-25
Table of Contents
This query will return the last_vacuum
and last_autovacuum
timestamps for
all user tables.
select relname, last_vacuum, last_autovacuum from pg_stat_user_tables;
Last Modified: 2023-07-25
This query will return the last_vacuum
and last_autovacuum
timestamps for
all user tables.
select relname, last_vacuum, last_autovacuum from pg_stat_user_tables;