Re: Import German Decimal Numbers

From: "Ken Allen" <KenA(at)BarrettXplore(dot)com>
To: "Jan Christian Dittmer" <jcdittmer(at)web(dot)de>, <pgsql-general(at)postgresql(dot)org>
Subject: Re: Import German Decimal Numbers
Date: 2008-05-07 13:21:12
Message-ID: 840AD183D768624E9544DBE25573104201CDB4D5@nawd103067.barrett.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Well if your doing an update, do it column by column and when you do a
date column replace the '.' with '/'

-----Original Message-----
From: pgsql-general-owner(at)postgresql(dot)org
[mailto:pgsql-general-owner(at)postgresql(dot)org] On Behalf Of Jan Christian
Dittmer
Sent: Wednesday, May 07, 2008 10:16 AM
To: pgsql-general(at)postgresql(dot)org
Subject: Re: [GENERAL] Import German Decimal Numbers

Thank you very much!
You have remind me that the our server runs under Linux and not under
Windows as our clients :-)
So indeed I can use a sed-pipe construct to switch '.' and ','.
But wait, there is just another problem then. Our date format is also
german :-( "DD.MM.YY" or
"DD.MM.YYYY". So if I just exchange '.' and ',' the date will be
unreadable for the import :-(
The (current) file is 1.4 GB so it will take ages to let awk chew on it
I guess.

Christian

Ken Allen wrote:
> I would replace the ',' with something else such as a '#' first then
> replace the decimal with the ',' then replace the '#' with a decimal
'.'
>
> If you do the ',' with a '.' first then all of them will be '.' and
you
> wont know which ones to change.
>

> Don't know, but you can replace the , to . within the ascii-file (sed,
> awk, ...).
>
>
> Andreas

--
Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

--
This message has been scanned by MailScanner

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tino Wildenhain 2008-05-07 13:24:44 Re: Import German Decimal Numbers
Previous Message Jan Christian Dittmer 2008-05-07 13:15:50 Re: Import German Decimal Numbers