Design
rows.txt
Associated article: Processing Rows in Batches
Tags: Design
Published source code accompanying the article by Steven F. Lott and Robert Lucente in which they avoid sorting all of the rows in the table, by focusing sorting on just a subset of those rows.
Processing Rows In Batches by Steven F. Lott and Robert Lucente Example 1: SELECT X, Y, Z FROM (SELECT X, Y, Z FROM SOMETABLE ORDER BY X) TEMPVIEW WHERE ROWNUM <= 100; Example 2: SELECT X, Y, Z FROM SOMETABLE ORDER BY X ...


