Re: Migrating to DB2 from Postgres

Поиск
Список
Период
Сортировка
От Mark kirkwood
Тема Re: Migrating to DB2 from Postgres
Дата
Msg-id 01092910335800.01532@spikey.slithery.org
обсуждение исходный текст
Список 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 по дате отправления: