Home > Microsoft .Net Development Tips > Microsoft SQL Server > Paging results using T-SQL
Win Development Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

MICROSOFT SQL SERVER

Paging results using T-SQL


Stephen Loschiavo
09.08.2003
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


In the world of Internet development, there are many times when a web page needs to display a subset of a large result set, that is, "paged results." Microsoft's ADO and the .NET platform offer this as a feature of the datagrid class, however the problem with this is that the complete recordset (containing all the data) is sent to the web server each time a page is viewed. This has an impact on web server memory and the bandwidth between the web server and the database server (if they are on separate machines)

The following SQL allows a page of results to be extracted from the database, so that only the single page of results is sent to the web server, thus reducing bandwidth requirements and memory requirements on the web server.

I have seen other variants of paged results built predominantly in SQL, but they tend to use cursors, which are notoriously slow. This solution creates a temporary table "#list" of a filtered set of results from the primary table, which in this case selects all the results from "ORDERS" (from Northwind database) where the customer id = "LINOD". The ORDERS table can be sorted if required. The temporary table #list contains only two columns, a unique identity and the primary key from the orders table. Once the temporary table is created, it can be filtered such that #list.id is between the starting record and the ending record for the page, and can be joined back to the "orders" table if there are other columns needed in the results.

The SQL has been tested on SQL server 2000. It uses the standard SQL functions that are available in SQL server 7.0, so there is no reason why it wouldn't work on SQL 7.0.

declare @pagerecords int
set @pagerecords = 5
declare @page int
set @page = 3
declare @totalrecords int


set rowcount 0
create table #list (id int primary key identity(1,1),uid int)
insert into #list
select OrderID from orders --place the primary table here
--join other tables here that may contain information to be filtered by or sorted by.
 where CustomerID = 'LINOD'

--Grab the total records here, will be useful if we need to display the total
--number of records or pages.
set @totalrecords = @@rowcount

--Set the number of records to display in a page.
set rowcount @pagerecords
--Now do the actual select query.
select *,@totalrecords from #list l
 join orders o on o.OrderID = l.uid
--Join other tables here that may contain information that needs to be displayed.
where l.id > ((@page-1) * @pagerecords)
--Other where clauses here if you like.

drop table #list

For More Information

  • Feedback: E-mail the editor with your thoughts about this tip.
  • More tips: Hundreds of free SQL Server tips and scripts.
  • Tip contest: Have a SQL Server tip to offer your fellow DBAs and developers? The best tips submitted will receive a cool prize -- submit your tip today!
  • Ask the Experts: Our SQL, database design, SQL Server, DB2, and data warehousing gurus are waiting to answer your toughest questions.
  • Forums: Ask your technical SQL Server questions--or help out your peers by answering them--in our active forums.
  • Best Web Links: SQL Server tips, tutorials, and scripts from around the Web.

Rate this Tip
To rate tips, you must be a member of SearchWinDevelopment.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
SQL Server and .NET development
Microsoft releases new CTP of Oslo SDK
Perpetuum unveils database synchronizer for .NET 2.0
The CTE, the hierarchical query and SQL Server 2005
SQL Server 2005 recursive functions and the CTE
SQL Examiner Suite synchronizes data schema, sets
Book excerpt: ADO.NET and SQL Server 2005
DataDirect database drivers now support MySQL
Top .NET tips of 2007 (so far)
Addressing common SQL Server questions
Book Excerpt: The .NET Framework and SQL Server 2005

Microsoft SQL Server
Using the Visual Studio 2005 DataSet Designer to build a data access layer
The CTE, the hierarchical query and SQL Server 2005
SQL Server 2005 recursive functions and the CTE
Choose the right .NET data provider, optimize application performance
The fallacy of the data layer -- or, a new architectural model for software designs
Book excerpt: ADO.NET and SQL Server 2005
Addressing common SQL Server questions
Book Excerpt: The .NET Framework and SQL Server 2005
WinForms development using SQL Server 2005 and Visual Basic 2005
Configuring ASP.NET 2.0 apps to SQL Server 2005 databases

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Database Programming Solutions - .NET XML, Visual Studio LINQ, ORM .NET
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2000 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts