Re: How to implement word wrap

From: Thom Brown <thombrown(at)gmail(dot)com>
To: Andrus <kobruleht2(at)hot(dot)ee>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: How to implement word wrap
Date: 2010-03-29 16:47:38
Message-ID: bddc86151003290947u5f1ad95agccfcbb5c4ece92ce@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 29 March 2010 17:42, Thom Brown <thombrown(at)gmail(dot)com> wrote:

> 2010/3/29 Andrus <kobruleht2(at)hot(dot)ee>
>
> Database column contains large string without line feeds.
>> How to split it with word wrap between words ?
>> I tried to implement word wrap using
>>
>> create temp table test (line char(7));
>> insert into test select repeat('aa ',10);
>> select * from test;
>>
>> Expected result is that table test contains multiple rows and every row
>> contains two words:
>>
>> aa aa
>>
>> Instead I got string too long exception.
>>
>> How to implement word wrap in PostgreSql if string contains words of any
>> size separated by spaces?
>>
>> Andrus.
>>
>> --
>>
>
> No, what you've done is asked it to insert 'aa aa aa aa aa aa aa aa aa aa'.
>
> I suspect you're looking for:
>
> INSERT INTO test SELECT 'aa' FROM generate_series(1,10);
>
> Regards
>
> Thom
>

Just realised that's not what you're after, but my first point still stands.

Thom

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Steve Atkins 2010-03-29 17:00:26 Re: Processor speed relative to postgres transactions per second
Previous Message Andreas Kretschmer 2010-03-29 16:43:09 Re: How to implement word wrap