1.1 ที่ postgres home
1.2 stop postgresql
1.3
Code: Select all
./autovacuum_off.sh
2. restore db (cat db.gz | gunzip > . . .)
3. run Full Vacuum
Code: Select all
psql -p PORT# db_name
VACUUM (ANALYZE);
Code: Select all
psql -p PORT# db_name
VACUUM (VERBOSE, ANALYZE);
4. เปิด autovacuum
4.1 ที่ postgres home
4.2 stop postgresql
4.3
Code: Select all
./autovacuum_on.sh