Modify autovacuum setting of table/index
-- Disable autovacuum for a table:
postgresql configurationintermediate
by PostgreSQL
14 views
-- Disable autovacuum for a table:
1234
postgres=#
alter table test2 set( autovacuum_enabled = off);
postgres=#
alter table test2 set( autovacuum_enabled = on);Please to add comments
No comments yet. Be the first to comment!