Hi everyone,
do you know of a good way to determine the total number of rows of a query that uses paging?
Example:
SELECT A, B, C FROM SOME_TABLE ROWS 1 TO 10
Is it possible to get the total number of rows without having to execute another query like:
SELECT COUNT(*) FROM SOME_TABLE
I want to omit the second query due to performance reasons. The actual query contains a where-clause and takes some time to execute.