Does Postgres database support differential backups

link|improve this question
This should really be on Serverfault. – ConcernedOfTunbridgeWells May 20 '10 at 7:33
feedback

migrated from stackoverflow.com May 21 '10 at 3:18

This question came from our site for professional and enthusiast programmers.

3 Answers

You can do it the "snapshot and archive log" way in postgresql 8.4. See section 24.3 in http://www.postgresql.org/docs/8.4/static/backup.html

You have to take off the database on the initial backup.

link|improve this answer
feedback

Something recently mentioned on the pg-admin list - "pg-rman (PostgreSQL Recovery Manager)".

link|improve this answer
feedback

pg_rman is also a tool. However this tool is not available for Windows. Suggested is to use pg_dump/pg_dumpall or Filesystem Backup. For more information, please follow the link given below: http://www.postgresql.org/docs/8.4/interactive/backup.html

Regards, Vibhor Kumar.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.