From: | Douglas McNaught <doug(at)mcnaught(dot)org> |
---|---|
To: | "Yateen Joshi" <yjoshi(at)starentnetworks(dot)com> |
Cc: | <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Query for importing and exporting data from a database |
Date: | 2005-05-26 15:18:48 |
Message-ID: | m2u0kqc8x3.fsf@Douglas-McNaughts-Powerbook.local |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
"Yateen Joshi" <yjoshi(at)starentnetworks(dot)com> writes:
> Link: File-List
>
> Hi,
>
>
>
> I am using postgres 7.4.2 on Solaris. My unix system does not place a
> limitation of 2 GB on file size. If I export a data from my database that
> causes the file size to be more than 2 GB, then that export fails (and
> vice versa for importing, i.e. if the file size is more than 3 GB, it can
> not import). Two questions -
>
> Why does this happen?
>
> Is there any way to avoid this?
Probably, your Postgres was not compiled with the LARGEFILE option (I
forget exactly what it's called).
You may be able to work around it by doing something like:
pg_dump -t mytable mydb | cat > output.sql
-Doug
From | Date | Subject | |
---|---|---|---|
Next Message | Alvaro Herrera | 2005-05-26 15:42:01 | Re: Modulus operator returns negative values / numeric |
Previous Message | David M. Lee | 2005-05-26 15:10:00 | Portability of pgsql database files. |