Re: Backup?

From: Vivek Khera <khera(at)kcilink(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Backup?
Date: 2003-09-05 15:17:58
Message-ID: x7smnb8dsp.fsf@yertle.int.kciLink.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

>>>>> "RJ" == Ron Johnson <ron(dot)l(dot)johnson(at)cox(dot)net> writes:

RJ> On Thu, 2003-09-04 at 15:40, Doug McNaught wrote:
>> Bjørn T Johansen <btj(at)havleik(dot)no> writes:
>>
>> > Should one use pg_dumpall to backup the database or is it more practical
>> > to just copy the data directory?
>>
>> The data directory will not be consistent unless the server is
>> stopped. pg_dumpall works well, produces a consistent backup and is
>> easily portable to a different machine architecture if need be.

RJ> And it's smaller than the data/ directory, especially when "-F c"
RJ> option is used.

That and indexes are represented as a single "CREATE INDEX" statement,
rather than possibly gigabytes of data ;-)

I had one index which I just realized was redundant to another and
deleting it saved me ~1Gb on disk.

For the curious, the indexes were like this:

PRIMARY KEY (a,b);
INDEX a ON mytable (a);

The query planner shows slightly longer plans with just the PK, but
the cost savings on mass inserts which happen often offset this
immensely, not to mention 1Gb of disk which never needs to be read
into the buffers ;-)

--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Vivek Khera, Ph.D. Khera Communications, Inc.
Internet: khera(at)kciLink(dot)com Rockville, MD +1-240-453-8497
AIM: vivekkhera Y!: vivek_khera http://www.khera.org/~vivek/

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2003-09-05 15:34:50 Re: default EXECUTE privilege
Previous Message Lincoln Yeoh 2003-09-05 15:16:27 Re: default EXECUTE privilege