Re: How to implement word wrap - Mailing list pgsql-general

From Thom Brown
Subject Re: How to implement word wrap
Date
Msg-id bddc86151003290942h122886b9k9cee4707b75db000@mail.gmail.com
Whole thread Raw
In response to How to implement word wrap  ("Andrus" <kobruleht2@hot.ee>)
Responses Re: How to implement word wrap  (Thom Brown <thombrown@gmail.com>)
List pgsql-general
2010/3/29 Andrus <kobruleht2@hot.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

pgsql-general by date:

Previous
From: Chris Barnes
Date:
Subject: Processor speed relative to postgres transactions per second
Next
From: Andreas Kretschmer
Date:
Subject: Re: How to implement word wrap