Re: Out of free buffers... HELP!

From: Haller Christoph <ch(at)rodos(dot)fzk(dot)de>
To: jdiehl(at)sandia(dot)gov (Diehl, Jeffrey)
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Out of free buffers... HELP!
Date: 2001-09-18 13:17:50
Message-ID: 200109181117.NAA22493@rodos
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

As long as there are no nulls allowed in column 'dst' the
select src,dst,count(dst) from ...
should retrieve the same result.
Try it. It should run faster anyway.
Maybe there are other ways to word your query, but without
more knowledge about your table structure and intentions
I can't tell you what.
Alternatively, you may want to report your error to the
[HACKERS] mailing list - there you might even find more
detailed support.
Regards, Christoph
>
> Hi all.
>
> I sent this once before, but didn't see it appear on the list... So here we
> go again...
>
> I have a large query that I'm trying to run, but it never finishes. I
> get an error message and it quits.
>
> I'm doing:
>
> psql ids -c 'select src,dst,count(*) from brick* where src_port=135
> group by src,dst' > /tmp/135.dat
>
> and I get:
>
> ERROR: out of free buffers: time to abort !
>
> Any ideas on how to get this query to run?
>
> Thanx,
> Mike Diehl.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2001-09-18 13:45:10 Re: Out of free buffers... HELP!
Previous Message D'Arcy J.M. Cain 2001-09-18 11:22:36 Re: Out of free buffers... HELP!