Re: Export Access 97 to PostgreSQL - Mailing list pgsql-sql

From Shawn
Subject Re: Export Access 97 to PostgreSQL
Date
Msg-id 200803261621.55622.postgres@xmtservices.net
Whole thread Raw
In response to Export Access 97 to PostgreSQL  ("Shavonne Marietta Wijesinghe" <shavonne.marietta@studioform.it>)
List 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 



pgsql-sql by date:

Previous
From: Shane Ambler
Date:
Subject: Re: Export Access 97 to PostgreSQL
Next
From: Shawn
Date:
Subject: Re: Part 1 of several - Converting a varchar to an interval