Re: Incremental backup with RSYNC or something?

From: Robins Tharakan <robins(dot)tharakan(at)comodo(dot)com>
To: PG-General Mailing List <pgsql-general(at)postgresql(dot)org>
Subject: Re: Incremental backup with RSYNC or something?
Date: 2011-11-13 13:40:35
Message-ID: 4EBFC8D3.7040302@comodo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> You could also do a
>
> pg_dump -Fc | gzip -1 -c > dumpfile.gz
>
> at the cost of a slightly larger (but faster backup).

Actually if you're going this route, you could skip even the pg_dump
compression as well...

pg_dump db | gzip -1 -c > dumpfile.gz

--
Robins Tharakan

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Gregg Jaskiewicz 2011-11-13 13:51:31 Re: Incremental backup with RSYNC or something?
Previous Message Robins Tharakan 2011-11-13 13:36:41 Re: Incremental backup with RSYNC or something?