Re: Counting the occurences of a substring within a very large text

From: Marc Mamin <M(dot)Mamin(at)intershop(dot)de>
To: "'Chris Mair'" <chris(at)1006(dot)org>, Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Counting the occurences of a substring within a very large text
Date: 2015-06-24 13:30:07
Message-ID: B6F6FD62F2624C4C9916AC0175D56D8828BEA719@jenmbs01.ad.intershop.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> -----Original Message-----
> From: Chris Mair [mailto:chris(at)1006(dot)org]
> Sent: Mittwoch, 24. Juni 2015 13:26
> To: Marc Mamin; Postgres General
> Subject: Re: [GENERAL] Counting the occurences of a substring within a
> very large text
>
> > Hello,
> >
> > I'd like to count the number linebreaks within a string, but I get a
> > memory allocation error when using regexp_matches or
> regexp_split_to_table.
> >
> > Any idea for an alternative to this problem ?
> >
> > select count(*)-1 from
> > ( select regexp_split_to_table(full_message,'(\n)', 'g')
> > from mytable
> > where id =-2146999703
> > )foo;
> >
> > ERROR: invalid memory alloc request size 1447215584
> >
> > regards,
> >
> > Marc Mamin
> >
>
> Hi,
>
> what's the size of full_message from mytable where id =-2146999703?

345 MB, Postgres 9.3.6

Marc Mamin

>
> Also: Postgres version? OS? any extensions installed?
>
> Bye,
> Chris.
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2015-06-24 13:43:19 Re: Include.d and warnings
Previous Message Marc Mamin 2015-06-24 13:28:14 Re: Counting the occurences of a substring within a very large text