Paging SQL Server 2005 Results - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:13:46Z http://stackoverflow.com/feeds/question/2840 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2840/paging-sql-server-2005-results 14 Paging SQL Server 2005 Results GateKiller 2008-08-05T20:57:00Z 2009-04-15T19:03:06Z <p>How do I page results in SQL Server 2005?</p> <p>I SQL Server 2000, there was no reliable way todo this but I'm now wondering if SQL Server 2005 has any built in method.</p> <p>What I mean by paging is, for example, if I list users by their username, I want to be able to only return the first 10 records, then the next 10 records and so on.</p> <p>Any help would be much appriciated.</p> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/2843#2843 15 Answer by Pat for Paging SQL Server 2005 Results Pat 2008-08-05T20:59:21Z 2009-04-15T19:03:06Z <p>You can use <code>the Row_Number()</code> function. Its used as follows:</p> <pre><code>SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName FROM Users </code></pre> <p>From which it will yield a result set with a <code>RowID</code> field which you can use to page between.</p> <pre><code>SELECT * FROM ( SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName FROM Users ) As RowResults WHERE RowID Between 5 AND 10 </code></pre> <p>etc</p> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/2847#2847 0 Answer by GateKiller for Paging SQL Server 2005 Results GateKiller 2008-08-05T21:01:03Z 2008-08-05T21:01:03Z <p>Thank you.</p> <p>How would I find out how many rows in total there are, so I can calculate the number of pages?</p> <p>I would prefer a method which doesn't require running two sql statement is possible.</p> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/2855#2855 0 Answer by Pat for Paging SQL Server 2005 Results Pat 2008-08-05T21:05:10Z 2008-08-05T21:05:10Z <p>I believe you'd need to perform a separate query to accomplish that unfortionately.</p> <p>I was able to accomplish this at my previous position using some help from this page: <a href="http://aspnet.4guysfromrolla.com/articles/031506-1.aspx" rel="nofollow">Paging in DotNet 2.0</a></p> <p>They also have it pulling a row count seperately.</p> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/9870#9870 0 Answer by Eric Z Beard for Paging SQL Server 2005 Results Eric Z Beard 2008-08-13T14:16:13Z 2008-08-13T14:16:13Z <p>Here's what I do for paging: All of my big queries that need to be paged are coded as inserts into a temp table. The temp table has an identity field that will act in a similar manner to the row_number() mentioned above. I store the number of rows in the temp table in an output parameter so the calling code knows how many total records there are. The calling code also specifies which page it wants, and how many rows per page, which are selected out from the temp table.</p> <p>The cool thing about doing it this way is that I also have an "Export" link that allows you to get all rows from the report returned as CSV above every grid in my application. This link uses the same stored procedure: you just return the contents of the temp table instead of doing the paging logic. This placates users who hate paging, and want to see <em>everything</em>, and want to sort it in a million different ways.</p> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/11352#11352 6 Answer by Brian for Paging SQL Server 2005 Results Brian 2008-08-14T17:15:31Z 2008-08-14T17:15:31Z <p>If your trying to get it in one statement (the total plus the paging). You might need to explore SQL Server support for the partition by clause (windowing functions in ANSI SQL terms). In Oracle the syntax is just like the example above using row_number(), but I have also added a partition by clause to get the total number of rows included with each row returned in the paging (total rows is 1,262:</p> <pre><code>SELECT rn, total_rows, x.OWNER, x.object_name, x.object_type FROM (SELECT COUNT (*) OVER (PARTITION BY owner) AS TOTAL_ROWS, ROW_NUMBER () OVER (ORDER BY 1) AS rn, uo.* FROM all_objects uo WHERE owner = 'CSEIS') x WHERE rn BETWEEN 6 AND 10 </code></pre> <p>Note that I have where owner = 'CSEIS' and my partition by is on owner. So the results are:</p> <pre><code>RN TOTAL_ROWS OWNER OBJECT_NAME OBJECT_TYPE 6 1262 CSEIS CG$BDS_MODIFICATION_TYPES TRIGGER 7 1262 CSEIS CG$AUS_MODIFICATION_TYPES TRIGGER 8 1262 CSEIS CG$BDR_MODIFICATION_TYPES TRIGGER 9 1262 CSEIS CG$ADS_MODIFICATION_TYPES TRIGGER 10 1262 CSEIS CG$BIS_LANGUAGES TRIGGER </code></pre> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/74129#74129 0 Answer by Andrew Burgess for Paging SQL Server 2005 Results Andrew Burgess 2008-09-16T16:17:24Z 2008-09-16T16:17:24Z <p>When I need to do paging, I typically use a temporary table as well. You can use an output parameter to return the total number of records. The case statements in the select allow you to sort the data on specific columns without needing to resort to dynamic SQL.</p> <pre><code>--Declaration-- --Variables @StartIndex INT, @PageSize INT, @SortColumn VARCHAR(50), @SortDirection CHAR(3), @Results INT OUTPUT --Statements-- SELECT @Results = COUNT(ID) FROM Customers WHERE FirstName LIKE '%a%' SET @StartIndex = @StartIndex - 1 --Either do this here or in code, but be consistent CREATE TABLE #Page(ROW INT IDENTITY(1,1) NOT NULL, id INT, sorting_1 SQL_VARIANT, sorting_2 SQL_VARIANT) INSERT INTO #Page(ID, sorting_1, sorting_2) SELECT TOP (@StartIndex + @PageSize) ID, CASE WHEN @SortColumn='FirstName' AND @SortDirection='ASC' THEN CAST(FirstName AS SQL_VARIANT) WHEN @SortColumn='LastName' AND @SortDirection='ASC' THEN CAST(LastName AS SQL_VARIANT) ELSE NULL END AS sort_1, CASE WHEN @SortColumn='FirstName' AND @SortDirection='DES' THEN CAST(FirstName AS SQL_VARIANT) WHEN @SortColumn='LastName' AND @SortDirection='DES' THEN CAST(LastName AS SQL_VARIANT) ELSE NULL END AS sort_2 FROM ( SELECT CustomerId AS ID, FirstName, LastName FROM Customers WHERE FirstName LIKE '%a%' ) C ORDER BY sort_1 ASC, sort_2 DESC, ID ASC; SELECT ID, Customers.FirstName, Customers.LastName FROM #Page INNER JOIN Customers ON ID = Customers.CustomerId WHERE ROW &gt; @StartIndex AND ROW &lt;= (@StartIndex + @PageSize) ORDER BY ROW ASC DROP TABLE #Page </code></pre> http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/752940#752940 3 Answer by Beska for Paging SQL Server 2005 Results Beska 2009-04-15T17:56:08Z 2009-04-15T17:56:08Z <p>The accepted answer for this doesn't actually work for me...I had to jump through one more hoop to get it to work.</p> <p>When I tried the answer</p> <pre><code>SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName FROM Users WHERE RowID Between 0 AND 9 </code></pre> <p>it failed, complaining that it didn't know what RowID was.</p> <p>I had to wrap it in an inner select like this:</p> <pre><code>SELECT * FROM (SELECT Row_Number() OVER(ORDER BY UserName) As RowID, UserFirstName, UserLastName FROM Users ) innerSelect WHERE RowID Between 0 AND 9 </code></pre> <p>and then it worked.</p>