Migrate data from Access to PostgreSQL

From: sara simoes <riojan2005(at)yahoo(dot)com(dot)br>
To: pg-interfaces(at)postgresql(dot)org
Subject: Migrate data from Access to PostgreSQL
Date: 2005-06-20 10:54:55
Message-ID: 20050620105455.61490.qmail@web61213.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Hello,

I've got an Access database and I need to migrate the data from the Access database to a Postgresql database.
Up to this moment, I've done the following:

- Create a table in postgresql
create table clients
(
name text,
phone text,
age integer
);

- export the table client in "tab" delimited format from access with the
fields in the same order as in postgresql :
mary 5551212 25
peter 5551313 26
paul 5551414 30
john 5551515 27

- use "copy table from..." command

copy client from 'C:/teste.txt';

Nevertheless, the data was not inserted and I received the following error message:

Line with OID 0 inserted.
ERROR: syntax error at or near "COPY" at character 9

What might be the problem? If export the table with comma delimited and use
COPY client FROM 'C:/teste.txt' using delimiters ',';

I get the following error message:

Line with OID 0 inserted.

ERRO R: syntax error at or near "COPY" at character 9

Note: I'm working with PgAdminIII

I would appreciate your help,


---------------------------------
Yahoo! Acesso Grátis: Internet rápida e grátis. Instale o discador agora!

Browse pgsql-interfaces by date

  From Date Subject
Next Message Teunis Peters 2005-06-20 18:51:11 users, address record restrictions
Previous Message Behzad Mahini 2005-06-18 19:46:17 Re: making contact via perl