I need to vacuum the PostgreSQL database in production server. I am very new to do this. So anybody knows the PostgreSQL steps, please guide me.
I think it\'s very usefu
Connect to the database and issue this command: "VACUUM". This causes a run in "lazy mode" that can be used during normal production use. It is recommended you actually invoke it as "vacuum analyze" which will also update statistics.
If you want to see lots of detail, you can at the console type "vacuum verbose"
The more extreme form is "vacuum full" which causes heavy table locking and cannot really be used on a production system.
Source: http://www.postgresql.org/docs/8.1/static/maintenance.html