Artem Tomyuk <admin@xxxxxxxxxxxxxx> writes: > Is there any "queue" in postgres where tables that marked to be vacuumed or > analyzed can be viewed? No, there's no queue as such. You can look at the contents of pg_stat_all_tables, particularly the n_dead_tup and n_mod_since_analyze columns, to get a sense of which tables are likely to seem highest priority to the autovacuum code. regards, tom lane