Re: Dump database more than 1 flat file

From: "Phillip Smith" <phillip(dot)smith(at)weatherbeeta(dot)com(dot)au>
To: "'A(dot)Burbello'" <burbello3000(at)yahoo(dot)com(dot)br>, "'Postgres Adm List'" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Dump database more than 1 flat file
Date: 2007-12-19 23:42:32
Message-ID: 006d01c84298$d31a2f70$9b0014ac@wbaus090
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Try splitting by line count instead of size:
-l, --lines=NUMBER
put NUMBER lines per output file

pg_dump | split -l 32000

You'll have to experiment to find how many lines will give you a roughly
appropriate size for your purposes.

Alternatively, another option is to get an USB external HDD (I picked up a
Seagate 120gb 2.5" one recently for AU$135) and dump your data to that, then
take that to the new server. Any recent 2.6 kernel shouldn't have any issues
mounting it (especially formatted as ext2/3 or jfs/xfs etc)

Cheers,
~p

THINK BEFORE YOU PRINT - Save paper if you don't really need to print this

*******************Confidentiality and Privilege Notice*******************

The material contained in this message is privileged and confidential to
the addressee. If you are not the addressee indicated in this message or
responsible for delivery of the message to such person, you may not copy
or deliver this message to anyone, and you should destroy it and kindly
notify the sender by reply email.

Information in this message that does not relate to the official business
of Weatherbeeta must be treated as neither given nor endorsed by Weatherbeeta.
Weatherbeeta, its employees, contractors or associates shall not be liable
for direct, indirect or consequential loss arising from transmission of this
message or any attachments
e-mail.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Dinesh 2007-12-20 01:28:21 including variables in COPY command
Previous Message A.Burbello 2007-12-19 23:34:14 Re: Dump database more than 1 flat file