I'm looking for a way to make good incremental backups for a large (more than 100 GB) PostgreSQL 8.3 DB. I'm currently using pg_dump which isn't incremental and very slow in backup and restore, because it dumps the entire contents every time.

I thought pg_rman would be the answer, but it's working on requires PostgreSQL 8.4 or newer.

Any ideas?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

http://code.google.com/p/pg-rman/

Appears to solve this problem

link|improve this answer
feedback

This is a question better asked and answered on serverfault.com - in fact: http://serverfault.com/questions/55661/automatic-postgres-backup discusses a few options around backups.

What you probably want are online backups - have a look at the docs:

http://www.postgresql.org/docs/8.1/static/backup-online.html

link|improve this answer
They discuss pg_dump and pg_dumpall, nothing incremental. – Adam Matan Jan 11 '10 at 16:46
this doesn't answer the question – Scott Schulthess Jun 29 '11 at 14:28
feedback

Your Answer

 
or
required, but never shown

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