Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Re: Oracle recordset paging

Re: Oracle recordset paging

From: Daniel A. Morgan <dmorgan_at_exesolutions.com>
Date: Sat, 16 Jun 2001 18:03:39 -0700
Message-ID: <3B2C01EB.14C8EF04@exesolutions.com>

isepick wrote:

> I have read several techniques outlined in this group for recordset paging:
>
> 1) Using a temp table and identity column - insert ordered rows and return
> the appropriate rows
> 2) Using triggers.
>
> Has anyone used the second technique - using triggers to returned a page
> from a recordset ? I'm looking for real life experience out there since I
> find using a temp table very slow with a large amount of records, and the
> overhead of creating and destroying the temp table to be too much.
>
> I also can't use where rownum <= X and rownum >= y since it does not order
> the query first before assigning the rownum.
>
> Any suggestions on a better approach, or how to use triggers to perform
> recordset paging ?
>
> Thanks.

Never used a trigger and wouldn't consider it. Triggers should be avoided except in those few situation where they are the only solution to a problem. And those are few and far between.

Daniel A. Morgan Received on Sat Jun 16 2001 - 20:03:39 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US