<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; T-SQL Paging Query Technique Comparison &#8211; SQL 2000 vs SQL 2005</title>
	<atom:link href="http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dana</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-57717</link>
		<dc:creator>Dana</dc:creator>
		<pubDate>Thu, 19 Nov 2009 01:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-57717</guid>
		<description>Would it not improve performance if you added &quot;TOP (@EndRow)&quot; to the RowNumber select statement? On very large tables (1,000,000 plus rows) the size of the Derived Table would be limited to the @EndRow size.

FROM ( TOP (@EndRow)
    SELECT    PC.FirstName, PC.LastName, PC.EmailAddress,
                ROW_NUMBER() OVER(</description>
		<content:encoded><![CDATA[<p>Would it not improve performance if you added &#8220;TOP (@EndRow)&#8221; to the RowNumber select statement? On very large tables (1,000,000 plus rows) the size of the Derived Table would be limited to the @EndRow size.</p>
<p>FROM ( TOP (@EndRow)<br />
    SELECT    PC.FirstName, PC.LastName, PC.EmailAddress,<br />
                ROW_NUMBER() OVER(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-55865</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 14 Sep 2009 15:00:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-55865</guid>
		<description>Thanks for the excellent article!  I was wondering what kinds of performance implications there are with using ROW_NUMBER for pagination, if any.  I have searched for a few days on Google, and haven&#039;t found much.  I would like to believe that this function is optimized by SQLServer 2005.  What kinds of impacts are there to the server?  Is this query resource intensive for very large tables, or many concurrent users?</description>
		<content:encoded><![CDATA[<p>Thanks for the excellent article!  I was wondering what kinds of performance implications there are with using ROW_NUMBER for pagination, if any.  I have searched for a few days on Google, and haven&#8217;t found much.  I would like to believe that this function is optimized by SQLServer 2005.  What kinds of impacts are there to the server?  Is this query resource intensive for very large tables, or many concurrent users?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-47190</link>
		<dc:creator>SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Tue, 24 Feb 2009 12:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-47190</guid>
		<description>[...] SQL SERVER - T-SQL Paging Query Technique Comparison - SQL 2000 vs SQL 2005 [...]</description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER &#8211; T-SQL Paging Query Technique Comparison &#8211; SQL 2000 vs SQL 2005 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kapil</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-45002</link>
		<dc:creator>Kapil</dc:creator>
		<pubDate>Mon, 22 Dec 2008 11:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-45002</guid>
		<description>Hi Pinal Dave,

          Can you Please tell me what the difference between in Sql Sever 2005 and Sql Server 2000. Means what new enhancement is done in sql Server 2005 as compared to sql server 2000.(In brief)

Thanks in Advance.</description>
		<content:encoded><![CDATA[<p>Hi Pinal Dave,</p>
<p>          Can you Please tell me what the difference between in Sql Sever 2005 and Sql Server 2000. Means what new enhancement is done in sql Server 2005 as compared to sql server 2000.(In brief)</p>
<p>Thanks in Advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: samadhan</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-44691</link>
		<dc:creator>samadhan</dc:creator>
		<pubDate>Wed, 10 Dec 2008 13:29:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-44691</guid>
		<description>send me the interview questions.</description>
		<content:encoded><![CDATA[<p>send me the interview questions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shilpi agrawal</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-43759</link>
		<dc:creator>shilpi agrawal</dc:creator>
		<pubDate>Fri, 17 Oct 2008 04:19:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-43759</guid>
		<description>Can sombody tell me about triggers in detail with example?</description>
		<content:encoded><![CDATA[<p>Can sombody tell me about triggers in detail with example?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bharatveer</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-43088</link>
		<dc:creator>Bharatveer</dc:creator>
		<pubDate>Sun, 21 Sep 2008 16:26:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-43088</guid>
		<description>can anybody send me some interview question</description>
		<content:encoded><![CDATA[<p>can anybody send me some interview question</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-43002</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Fri, 19 Sep 2008 19:22:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-43002</guid>
		<description>Pinal, 

You insights are great and valuable. Please remove the post(s) whoever bugging and asking you about interview questions. They need to start contribution and add value to the group and not just bug you.

Thanks,</description>
		<content:encoded><![CDATA[<p>Pinal, </p>
<p>You insights are great and valuable. Please remove the post(s) whoever bugging and asking you about interview questions. They need to start contribution and add value to the group and not just bug you.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristoffer Trolle</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-42318</link>
		<dc:creator>Kristoffer Trolle</dc:creator>
		<pubDate>Tue, 02 Sep 2008 14:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-42318</guid>
		<description>you&#039;re freaking amazing!!! give me more of your sweet sweet sql juice!</description>
		<content:encoded><![CDATA[<p>you&#8217;re freaking amazing!!! give me more of your sweet sweet sql juice!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anders Vindberg</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-42317</link>
		<dc:creator>Anders Vindberg</dc:creator>
		<pubDate>Tue, 02 Sep 2008 14:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-42317</guid>
		<description>You rock!</description>
		<content:encoded><![CDATA[<p>You rock!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kiran</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-41657</link>
		<dc:creator>kiran</dc:creator>
		<pubDate>Wed, 13 Aug 2008 22:34:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-41657</guid>
		<description>i am pretty much interested in the  interview questions and answers</description>
		<content:encoded><![CDATA[<p>i am pretty much interested in the  interview questions and answers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shiroz</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-5845</link>
		<dc:creator>shiroz</dc:creator>
		<pubDate>Wed, 25 Jul 2007 13:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-5845</guid>
		<description>send me the interview questions</description>
		<content:encoded><![CDATA[<p>send me the interview questions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - 2005 T-SQL Paging Query Technique Comparison (OVER and ROW_NUMBER()) - CTE vs. Derived Table Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/04/03/sql-server-t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-3592</link>
		<dc:creator>SQL SERVER - 2005 T-SQL Paging Query Technique Comparison (OVER and ROW_NUMBER()) - CTE vs. Derived Table Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Mon, 11 Jun 2007 14:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/04/03/t-sql-paging-query-technique-comparison-sql-2000-vs-sql-2005/#comment-3592</guid>
		<description>[...] 11th, 2007 by pinaldave    I have received few emails and comments about my post SQL SERVER - T-SQL Paging Query Technique Comparison - SQL 2000 vs SQL 2005. The main question was is this can be done using CTE? Absolutely! What about Performance? It is [...]
</description>
		<content:encoded><![CDATA[<p>[...] 11th, 2007 by pinaldave    I have received few emails and comments about my post SQL SERVER &#8211; T-SQL Paging Query Technique Comparison &#8211; SQL 2000 vs SQL 2005. The main question was is this can be done using CTE? Absolutely! What about Performance? It is [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
