Re: backup problem

From: "renneyt(at)yahoo(dot)com" <renneyt(at)yahoo(dot)com>
To: Jyry Kuukkanen <jyry(at)neutech(dot)fi>
Cc: Rodrigo Sakai <rodrigo(dot)sakai(at)zanthus(dot)com(dot)br>, pgsql-admin(at)postgresql(dot)org
Subject: Re: backup problem
Date: 2006-05-04 15:46:15
Message-ID: 445A21C7.1050905@yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Jyry Kuukkanen wrote:
> On Thu, 4 May 2006, Rodrigo Sakai wrote:
>
>
>> Hi, I'm trying to do a backup of a database that is larger then 4 GB. But it gets an error when the file size gets 1.2 GB! I think its an Operational System problem (linux)! So, I want to know if exists some solution to backup my database??
>>
>> The command that I used was=
>>
>> pg_dump -U postgres -d dbdeveloper -a -v -D -f 'backup.sql'
>>
>> The operational system is linux with etx filesystem, and the version of postgres is 7.4!!
>>
>
>
> You can try:
>
> pg_dump -U postgres -d dbdeveloper -a -v -D |bzip2 -c >backup.sql.bz2
>
> bzip2 compresses better than gzip.
>
> Restoration:
>
> bzcat backup.sql.bz2|psql - postgres -d dbdeveloper
>
>
> Cheers,
>

I use the same but use the bzip2 '--best' parameter for best compression
or is that the default? Also for the OP Rodrigo Sakai, have your tried
Solaris 10 x86? It is a rock solid OS from Sun that I have used for 12
years - 6 of them with Postgres. The two have coexisted together without
incident. It can be d/led for free at the Sun site.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Shivaji S 2006-05-04 18:06:07 How to find current running process
Previous Message Jyry Kuukkanen 2006-05-04 15:27:01 Re: backup problem