Re: Export Access 97 to PostgreSQL

From: Shawn <postgres(at)xmtservices(dot)net>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Export Access 97 to PostgreSQL
Date: 2008-03-26 16:21:55
Message-ID: 200803261621.55622.postgres@xmtservices.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Wednesday 26 March 2008 11:46:43 Shavonne Marietta Wijesinghe wrote:
> Hello
>
> I have a db in MS Access 97 and now i have to import the data in
> PostgreSQL. I can create the table structure in PostgreSql but in what
> format can i export the table from Access so Postgresql can read it?
>
> Thanks
>
> Shavonne

Hello Shavonne,

I'm no expert but I have often used either the tab or comma delimited format.
It requires that the fields in the PostgreSQL table are in the same order as
the original and that the data types are formatted similarly, but it has
worked for me. Also a sed and awk'ing of the results can clean up alot of
formatting issues.

example, one of my fields is in the timestamp with time zone format but MS-SQL
doesn't differentiate Time Zones, at least not in the database I'm pulling
from. I use this line to add the UTC to the field " sed 's/\t/ UTC\t/1'".

Shawn

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Shawn 2008-03-26 16:27:25 Re: Part 1 of several - Converting a varchar to an interval
Previous Message Shane Ambler 2008-03-26 16:15:39 Re: Export Access 97 to PostgreSQL