Re: Postgresql Copy - Mailing list pgsql-general

From Andrew Gould
Subject Re: Postgresql Copy
Date
Msg-id 20011031222516.66062.qmail@web13409.mail.yahoo.com
Whole thread Raw
In response to Postgresql Copy  ("samsom, debra" <dsamsom@bristol.ca>)
Responses Re: Postgresql Copy  (Jason Earl <jdearl@yahoo.com>)
Re: Postgresql Copy  ("Roderick A. Anderson" <raanders@tincan.org>)
List pgsql-general
I think that is correct.  If I'm wrong, I'm sure I'll
be corrected.

I import fixed width data using one of two methods:

1.  I import the data into MS Access, which can deal
with fixed width data; and then I move the data to
PostgreSQL via ODBC connection.

2.  There's a huge fixed width file that I receive
every quarter.  Since the structure is the same, I
wrote a python script that copies the data to a new
file, inserting tab delimiters and stripping out the
extra spaces as it goes.  The resulting file is often
one third the size of the original.  I then use copy
to import the tab delimited data into PostgreSQL.

If you'd like me to send the python script, let me
know.  Basically, you'll have to adjust the file to
fit your data table's definition.  (Or send me the
definition of one table and I'll adjust it this once.)
 In any case, the original file is left unchanged
should anything go wrong.

Best of luck,

Andrew Gould



--- "samsom, debra" <dsamsom@bristol.ca> wrote:
> Is there away to copy fixed length text files into
> an Postgresql table.
> After reading the doc's it looks Postgresql expects
> some sort of delimiter.
>


__________________________________________________
Do You Yahoo!?
Make a great connection at Yahoo! Personals.
http://personals.yahoo.com

pgsql-general by date:

Previous
From: Lamar Owen
Date:
Subject: Re: fresh install of postgres 7.1 doesn't start postmaster with the "-i" flag
Next
From: Jason Earl
Date:
Subject: Re: Postgresql Copy