skip take pagination problem
Posted: Tue 29 Sep 2009 09:26
Hello,
I mentioned in a previous message paging problem. Following the update dotconnect, my problem was solved. Off by investigating a little more, I found that the framework of the request by the code swap seemed odd.
Why the last instruction is "rownum"? because in this case it brings me back 299 record. I was expecting 150 records.
Why the latest "rownum" is not made with the "row_numbre (row_number between 149 and 299)? since then I have 150 records.
Is it intentional or a mistake?
I mentioned in a previous message paging problem. Following the update dotconnect, my problem was solved. Off by investigating a little more, I found that the framework of the request by the code swap seemed odd.
Code: Select all
....
WHERE "Project1"."row_number" > 149
ORDER BY "Project1".RAISONSOCIALE ASC
) "top"
WHERE ROWNUM <= (299)
Why the latest "rownum" is not made with the "row_numbre (row_number between 149 and 299)? since then I have 150 records.
Is it intentional or a mistake?