Re: Inserting TEXT with multiple lines

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Rick Jones <RJones(at)NAHRO(dot)org>
Cc: "Pgsql-Novice (E-mail)" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Inserting TEXT with multiple lines
Date: 2001-01-22 22:00:56
Message-ID: 9067.980200856@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Rick Jones <RJones(at)NAHRO(dot)org> writes:
> In my table there is a "synopsis" field that I want to change so that it
> displays with line breaks (ColdFusion client). Is there an easy way to do
> this? I've tried INSERT. I've used COPY ... FROM with the table and then
> made the modification (using \n for the carriage returns) then tried COPY
> ... TO. When I do that I get the following error:

"\n" should work to represent a newline in COPY data.

> ": can't parse "ne 1, pg_atoi: error in "112

Looks to me like your editor changed all the line endings to \r\n.
Try using a less Windows-ish editor.

regards, tom lane

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Andy Arledge 2001-01-23 01:29:05 pg_exec : problem
Previous Message Rick Jones 2001-01-22 18:35:16 Inserting TEXT with multiple lines