Is there an easy way to page large datasets using the Access database via straight SQL? Let's say my query would normally return 100 rows, but I want the query to page through the results so that it only retrieves (let's say) the first 10 rows. Not until I request the next 10 rows would it query for rows 11-20.
|
|
If you run a ranking query, you will get a column containing ascending numbers in your output. You can then run a query against this column using a So, for example, if your pages each contain 10 records and you want the third page, you would do:
How to Rank Records Within a Query |
||||
|
|
|
The Access Database Engine doesn’t handle this very well: the proprietary But, to be fair, this is something SQL in general doesn't handle very well. This is one of the few scenarios where I would consider dynamic SQL (shudder). But first I would consider using an ADO classic recordset, which has properties for You could also consider using the Access Database Engine's little-known
Could come in handy? ... my tongue is firmly embedded in my cheek :) This syntax doesn't exist in the Access Database Engine and never has. Instead, it's yet another example of the appalling state of the Access documentation on the engine side of the house. Is the product fit for purpose if the documentation has massive holes and content cannot be trusted? is Caveat emptor. |
|||
|
|
|
|
I'm not certain how ranking answers your question. Also, I'm having trouble imagining why you would need this -- this is usually something you do on a website in order to break down the data retrieved into small chunks. But a Jet/ACE database is not a very good candidate for a website back end, unless it's strictly read-only. One other SQL solution would use nested TOP N, but usually requires on-the-fly procedural code to write the SQL. It also has the problem with ties, in that unless you include a unique field in your ORDER BY, you can get 11 records with a TOP 10 should two records have a tie on the values in the ORDER BY clause. I'm not suggesting this is a better solution, just a different one. |
||||||||||||||||||||
|
