Is there a way to query Sql Server 2005 and return out of a 100 records. Records 10 - 20. In other words only 10 rows would be returned. Not the first 10 but the second 10 - 20.

I want to do this in TSQL. This would also be acceptable with NHibernate but ultimatley NHibernate would need to convert the HQL into TSQL. I know its possible to do this from Linq but I want to know whether its possible from TSQL.

Oh btw. This is for optimization purpose. So just like you would return the Max 100 rows. You would return it for the same reason but a subset. Performance is the reason!!

link|improve this question

76% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Try:

http://www.sqlservercurry.com/2009/06/skip-and-take-n-number-of-records-in.html

link|improve this answer
thanks brother, excellent result. Problem is I am doing this for performance reasons and I just think that when you are dealing with thousands of rows it would be to slow. That is the right answer though ... what about performance. Im doing this for performance reasons!! – Jonathan Apr 12 '11 at 19:51
@Jonathan Performance is not great using this approach. See erikporter.com/Blog/… for details and another solution. – Thomas Li Apr 12 '11 at 19:58
1  
I agree this is not ideal – jacko Apr 18 '11 at 19:25
feedback

How can you do paging with NHibernate?

link|improve this answer
1  
Criteria's allow you to do basically anything you would ever imagine doing with T-SQL – jacko Apr 18 '11 at 19:23
Yeah man pretty nuts, wasn't expecting this, super impressed! – Jonathan Apr 18 '11 at 19:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.