Click here to Skip to main content
15,881,882 members
Articles / Database Development / SQL Server
Article

Paging in SQL Server by using TSQL

Rate me:
Please Sign up or sign in to vote.
1.53/5 (33 votes)
18 May 2006 70.6K   754   47   10
Facilitating efficient Sql Server paging by giving T-SQL query as input to this generic stored procedure

Sample Image - Easy_Sqlserver_paging.jpg

Introduction

Generally, developers specially beginners or application developer face problems to implement paging in web or desktop based application applications.

Two concepts of paging are available:  

-At Database level 
-At Application level
 

Most of the developers apply paging on application layer which is not a very good idea for web centric applications, as it is always expensive to query database and then create page at BLL/DLL level.

Paging on database level i.e. in Stored Procedure generally requires more effort and time, that is why mostly developers are reluctant to go for this option.

To cut it short, I have created a generic stored procedure which will do all this hassle, and it is good enough to handle most of the queries with T-SQL syntax. Now you don't need to create separate Stored Procedure for paging :) 

Happing coding, cheers!!! 

<P>  --- Input Parameters
 @Tables varchar(1000),
 @PK varchar(100),
 @JoinStatements varchar(1000)='',
 @Fields varchar(5000) = '*',
 @Filter varchar(5000) = NULL,
 @Sort varchar(200) = NULL,
 @PageNumber int = 1,
 @PageSize int = 10,
 @TotalRec int =0 Output,
 @Group varchar(1000) = NULL</P><P> </P>

Consider statement as query

<P class=MsoNormal style="MARGIN: 0in 0in 0pt">SELECT     [Order Details].UnitPrice, [Order Details].ProductID, Products.ProductName, 
Products.CategoryID, Products.SupplierID, Categories.Description, Categories.CategoryName,</P><P class=MsoNormal style="MARGIN: 0in 0in 0pt">Categories.Picture FROM [Order Details] INNER JOIN Products </P><P class=MsoNormal style="MARGIN: 0in 0in 0pt">ON [Order Details].ProductID = Products.ProductID INNER JOIN Categories </P><P class=MsoNormal style="MARGIN: 0in 0in 0pt">ON Products.CategoryID = Categories.CategoryID 
</P>

 

 

Sample variable assignment  

@tables specify first joining table

Which is [Order Details]
@PK is  [Order Details].OrderID


@JoinStatements is 
INNER JOIN  Products ON [Order Details].ProductID = Products.ProductID INNER JOIN 
Categories ON Products.CategoryID = Categories.CategoryID


@Fields is [Order 
Details].UnitPrice, [Order Details].ProductID, Products.ProductName, 
Products.CategoryID, Products.SupplierID, Categories.Description 
,Categories.CategoryName, Categories.Picture

@TotalRec will return how much records are in table soyou can calculate total pages  
Formula is simple CEILING (@TotalRec/@PageSize) 
 


And so on ..

Soon I will upload example c# code that will show how you can use it

 

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralGood Idea Pin
Member 123940915-Aug-05 18:58
Member 123940915-Aug-05 18:58 
GeneralRe: Good Idea Pin
Muhammad Kashif Akram17-Aug-05 9:36
Muhammad Kashif Akram17-Aug-05 9:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.