Re: CSV import

From: Jean-Luc Lachance <jllachan(at)nsd(dot)ca>
To: Chad Thompson <chad(at)weblinkservices(dot)com>
Cc: pgsql-sql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: CSV import
Date: 2003-01-31 15:27:47
Message-ID: 3E3A95F3.842C9691@nsd.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

In DOS and Windows, text lines end with <CR><LF>.
In Unix, text lines end with <LF> only.

hex dec oct
<CR>=CTRL-M or 0x0D or 13 or 015
<LF>=CTRL-J or 0x0A or 10 or 012

Chad Thompson wrote:
>
> >
> > Unix EOL is LF not CR.
> >
> >
>
> Is this the only difference between a dos and unix text file?
>
> Thanks
> Chad
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message joe.guyot 2003-01-31 15:40:41 how do i create a date from a substring???
Previous Message Tom Lane 2003-01-31 14:56:05 Re: calculated expressions and index use