Re: Migrating to DB2 from Postgres - Mailing list pgsql-general

From Mark kirkwood
Subject Re: Migrating to DB2 from Postgres
Date
Msg-id 01092910335800.01532@spikey.slithery.org
Whole thread Raw
List pgsql-general
To get the data you are may have more luck doing each table one at a time :

for each table <TABLE>
in Pg use

COPY  <TABLE> TO '<the file for TABLE>' USING DELIMITERS ',';

in DB2 use

db2 LOAD FROM '<the file for TABLE>' OF DEL INSERT INTO <TABLE>

good luck

Mark

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Authenticating user `postgres'
Next
From: Bruce Momjian
Date:
Subject: Re: PostgreSQL 7.1 on SMP: FreeBSD 4.3 || Linux 2.4.x?