Click here to Skip to main content
Licence 
First Posted 13 Aug 2005
Views 55,188
Bookmarked 48 times

Paging in SQL Server by using TSQL

By | 18 May 2006 | Article
Facilitating efficient Sql Server paging by giving T-SQL query as input to this generic stored procedure
 
Part of The SQL Zone sponsored by
See Also

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

About the Author

Muhammad Kashif Akram



Pakistan Pakistan

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralEasiest Paging Method Pinmembermayurmv17:10 4 Sep '08  
Generalworks only if pk is integer Pinmembermirani ajay5:42 19 Dec '06  
QuestionHow about performance Pinmembertfrost23:15 15 Aug '05  
AnswerRe: How about performance PinmemberMuhammad Kashif Akram9:34 17 Aug '05  
GeneralRe: How about performance PinmemberTzoockee1:42 29 Aug '05  
GeneralRe: How about performance PinmemberMuhammad Kashif Akram23:57 18 Sep '05  
GeneralRe: How about performance Pinmembernoeldr8:57 18 May '06  
AnswerRe: How about performance Pinmemberzvn3:36 14 Jul '06  
GeneralGood Idea PinmemberSofyan_OPY18:58 15 Aug '05  
GeneralRe: Good Idea PinmemberMuhammad Kashif Akram9:36 17 Aug '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 18 May 2006
Article Copyright 2005 by Muhammad Kashif Akram
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid