<?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; Force Index Scan on Table &#8211; Use No Index to Retrieve the Data &#8211; Query Hint</title>
	<atom:link href="http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/</link>
	<description>SQL, SQL Server, MySQL, Big Data and NoSQL</description>
	<lastBuildDate>Wed, 19 Jun 2013 08:01:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #020 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-438058</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #020 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 16 Mar 2013 01:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-438058</guid>
		<description><![CDATA[[...] Force Index Scan on Table – Use No Index to Retrieve the Data – Query Hint In this blog post I tried to answer two of the very important questions I keep on encountering with related to Indexing. Question 1: I have a unique requirement where I do not want to use any index of the table; how can I achieve this? Question 2: Currently my table uses clustered index and does seek operation; how can I convert seek to scan? [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Force Index Scan on Table – Use No Index to Retrieve the Data – Query Hint In this blog post I tried to answer two of the very important questions I keep on encountering with related to Indexing. Question 1: I have a unique requirement where I do not want to use any index of the table; how can I achieve this? Question 2: Currently my table uses clustered index and does seek operation; how can I convert seek to scan? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 7876322056</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-152852</link>
		<dc:creator><![CDATA[7876322056]]></dc:creator>
		<pubDate>Tue, 02 Aug 2011 18:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-152852</guid>
		<description><![CDATA[Can I used WITH (INDEX(0)) on INSERT to simulate the performance degradation index cause on INSERT]]></description>
		<content:encoded><![CDATA[<p>Can I used WITH (INDEX(0)) on INSERT to simulate the performance degradation index cause on INSERT</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Panos</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-82364</link>
		<dc:creator><![CDATA[Panos]]></dc:creator>
		<pubDate>Fri, 30 Jul 2010 15:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-82364</guid>
		<description><![CDATA[I can confirm that I had a simmilar issue. A quite complex query that I thought was running fast enough. By mistake a dropped the index in one of the tables and then run in half the time. I now have a with (INDEX(0)) to not use any index on that table and does a table scan.]]></description>
		<content:encoded><![CDATA[<p>I can confirm that I had a simmilar issue. A quite complex query that I thought was running fast enough. By mistake a dropped the index in one of the tables and then run in half the time. I now have a with (INDEX(0)) to not use any index on that table and does a table scan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-63341</link>
		<dc:creator><![CDATA[Jason]]></dc:creator>
		<pubDate>Fri, 19 Mar 2010 19:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-63341</guid>
		<description><![CDATA[Use reverse(reverse(&#039;string&#039;)) to eliminate index options.  Substring would probably do it too but don&#039;t have time to test.]]></description>
		<content:encoded><![CDATA[<p>Use reverse(reverse(&#8216;string&#8217;)) to eliminate index options.  Substring would probably do it too but don&#8217;t have time to test.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John McLusky</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-62959</link>
		<dc:creator><![CDATA[John McLusky]]></dc:creator>
		<pubDate>Mon, 15 Mar 2010 12:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-62959</guid>
		<description><![CDATA[In what kind of scenario would you want to deliberately not use any index on a table?  I&#039;m just not sure what the use of this trick is.

In fact, in your examples the query cost when avoiding the index is quite a bit worse than with the index - an example where it reduced might have been more convincing.]]></description>
		<content:encoded><![CDATA[<p>In what kind of scenario would you want to deliberately not use any index on a table?  I&#8217;m just not sure what the use of this trick is.</p>
<p>In fact, in your examples the query cost when avoiding the index is quite a bit worse than with the index &#8211; an example where it reduced might have been more convincing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Feodor Georgiev</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-62810</link>
		<dc:creator><![CDATA[Feodor Georgiev]]></dc:creator>
		<pubDate>Fri, 12 Mar 2010 11:15:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-62810</guid>
		<description><![CDATA[Hi Pinal,
thank you for the great article! I would, however, recommend to your readers another great article on using HINTS. http://www.brentozar.com/archive/2010/03/2-features-of-sql-server-you-should-avoid/]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
thank you for the great article! I would, however, recommend to your readers another great article on using HINTS. <a href="http://www.brentozar.com/archive/2010/03/2-features-of-sql-server-you-should-avoid/" rel="nofollow">http://www.brentozar.com/archive/2010/03/2-features-of-sql-server-you-should-avoid/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paresh Prajapati</title>
		<link>http://blog.sqlauthority.com/2010/03/11/sql-server-force-index-scan-on-table-use-no-index-to-retrieve-the-data-query-hint/#comment-62702</link>
		<dc:creator><![CDATA[Paresh Prajapati]]></dc:creator>
		<pubDate>Thu, 11 Mar 2010 06:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=8167#comment-62702</guid>
		<description><![CDATA[Hi Pinal,

In second example of using &quot;where productNumber  = &#039;CR-7833&#039; &quot;.
And it using the seek on nonclustered index and another one using scan clusteted index.

Is it possible to use seek Clustered index with same query?]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>In second example of using &#8220;where productNumber  = &#8216;CR-7833&#8242; &#8220;.<br />
And it using the seek on nonclustered index and another one using scan clusteted index.</p>
<p>Is it possible to use seek Clustered index with same query?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
