Re: large query by offset and limt - Mailing list pgsql-general

From Ge Cong
Subject Re: large query by offset and limt
Date
Msg-id f06ed29f-c42d-4f93-9ae8-aaff3782f85f@q1g2000prf.googlegroups.com
Whole thread Raw
In response to large query by offset and limt  (finecur <finecur@yahoo.com>)
Responses Re: large query by offset and limt  (Craig Ringer <craig@postnewspapers.com.au>)
List pgsql-general
Thank you very much. Could you show me how to do it in JDBC?


Craig Ringer wrote:
> finecur wrote:
> > Hi, I am ruuning a database behind a webserver and there is a table
> > which is huge. I need to pull data from this table and send to user
> > through http. If I use
> >
> > select * from huge_table where userid = 100
> >
> > It will return millions of records which exhuasts my server's memory.
>
> > Is there a better way to do this?
>
> Consider using database cursors. Set up by beginning a transaction and
> issuing the statement:
>
> DECLARE huge_table_curs CURSOR FOR
> SELECT * FROM huge_table WHERE userid = 100;
>
> ... then to get results, just execute:
>
> FETCH 1000 FROM huge_table_curs;
>
> --
> Craig Ringer
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Feature request
Next
From: Bruno Wolff III
Date:
Subject: Interesting comments about fsync on Linux