What is the best way (performance wise) to paginate results in SQL Server 2000, 2005, 2008 if you also want to get the total number of results (before paginating)?
|
6
|
|||||
|
|
|
Getting the total number of results and paginating are two different operations. For the sake of this example, let's assume that the query you're dealing with is
In this case, you would determine the total number of results using:
...which may seem inefficient, but is actually pretty performant, assuming all indexes etc. are properly set up. Next, to get actual results back in a paged fashion, the following query would be most efficient:
This will return rows 1-19 of the original query. The cool thing here, especially for web apps, is that you don't have to keep any state, except the row numbers to be returned. |
||||
|
|
|
Well I have used the following sample query in my SQL 2000 database, it works well for SQL 2005 too. The power it gives you is dynamically order by using multiple columns. I tell you ... this is powerful :)
The best part is sp_executesql caches later calls, provided you pass same parameters i.e generate same sql text. |
||
|
|
|
|
There is a good overview of different paging techniques at http://www.codeproject.com/KB/aspnet/PagingLarge.aspx I've used ROWCOUNT method quite often mostly with SQL Server 2000 (will work with 2k5 & 2k8 too, just measure performance compared to ROW_NUMBER), it's lightning fast, but you need to make sure that the sorted column(s) have (mostly) unique values. |
||
|
|
|
|
I was going to leave this topic alone, because I figured a billion people were going to jump on it, but it wasn't as busy a thread as I thought it would be. There are some articles on using row number and the BETWEEN statement to efficiently do pagination. http://www.codeproject.com/KB/database/row_number.aspx http://www.singingeels.com/Articles/Pagination_In_SQL_Server_2005.aspx and to kind of fake row numbers in sql server 2000 this link should give you something to work with: http://support.microsoft.com/default.aspx?scid=kb;en-us;186133 |
||
|
|
|
|
You didn't specify the language nor which driver you are using. Therefore I'm describing it abstractly.
|
|||
|
|
|
|
What is the maximum number of results you want to support? If it is small enough, let's say 1000, you can select top 1000 and keep the result set cached for the user. Do the pagination in memory. |
||
|
|
