Re: Carraige Return issues

From: "caroline kenny" <caroline_kenny(at)hotmail(dot)com>
To: olly(at)lfix(dot)co(dot)uk
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Carraige Return issues
Date: 2002-07-05 10:51:42
Message-ID: F202zi95HfqR77bieLY00000245@hotmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Thanks Oliver for your help....but I'm still having a small issue..

What Im really trying to do is to insert/update a field in a particular
table through perl script.
When i run the perl script to insert the specifics into my table...i want
that the file that to be entered into the specific field will be put in with
its carriage returns....can u help further
Cheers!
Caroline

>From: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>
>To: caroline kenny <caroline_kenny(at)hotmail(dot)com>
>CC: pgsql-general(at)postgresql(dot)org
>Subject: Re: [GENERAL] Carraige Return issues
>Date: 05 Jul 2002 10:48:15 +0100
>
>On Thu, 2002-07-04 at 16:15, caroline kenny wrote:
>
> > I hope that someone outthere can help me. I am trying to insert the text
> > from a file into a database. The file contains 2 carraige returns in it.
> > When i go to retrieve this this information from the specific field in
>the
> > database, the carraige return seems to have disappeared and the lines
>just
> > read one after the other...does anyone know how i can overcome this
>problem
>
>You need to escape the newline characters.
>
>Here's an example of copying multiline text from a file
>
> junk-# \! cat /tmp/ol
> 1 line 1 of text\
> \
> \
> line4 of text
> \.
>
> junk=# copy tt from '/tmp/ol';
> COPY
> junk=# select * from tt;
> id | t
> ----+--------------------------------
> 1 | line 1 of text
>
>
> line4 of text
> (1 row)
>
>
>Oliver Elphick
>
>
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 3: if posting/reading through Usenet, please send an appropriate
>subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
>message can get through to the mailing list cleanly

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com

Responses

Browse pgsql-general by date

  From Date Subject
Next Message CoL 2002-07-05 12:13:23 Re: Comparing PostgreSQL and Oracle stability
Previous Message Neal Holtz 2002-07-05 10:30:52 Re: EVAL and SET equivalents in PostgreSQL