<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>
<channel>
	<title>SQL Server Performance &#187; index</title>
	<atom:link href="http://www.sql-server-performance.com/tag/index-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sql-server-performance.com</link>
	<description>SQL Server Performance Tuning</description>
	<lastBuildDate>Wed, 22 May 2013 06:37:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Find Duplicate Indexes on SQL Server (Script)</title>
		<link>http://www.sql-server-performance.com/2013/find-duplicate-indexes-on-sql-server/</link>
		<comments>http://www.sql-server-performance.com/2013/find-duplicate-indexes-on-sql-server/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 12:17:49 +0000</pubDate>
		<dc:creator>Basit Farooq</dc:creator>
				<category><![CDATA[General DBA]]></category>
		<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[duplicate indexes]]></category>
		<category><![CDATA[index]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3624</guid>
		<description><![CDATA[Like other mainstream commercial database systems, Microsoft SQL Server allows you to create multiple indexes on the same column of a table. This  increases the likelihood of having duplicate indexes in the database because SQL Server does not prevent you from creating duplicate indexes, infect we can create up to 999 duplicate indexes on each [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2013/find-duplicate-indexes-on-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forwarding Pointers in Heaps</title>
		<link>http://www.sql-server-performance.com/2013/forwarding-pointers-in-heaps/</link>
		<comments>http://www.sql-server-performance.com/2013/forwarding-pointers-in-heaps/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 00:58:31 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[Heaps]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[Pointers]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3620</guid>
		<description><![CDATA[When no clustered index is defined on a table, that table is said to be a Heap. Heaps are not ideal when it comes to performance but there are lots of instances where you have heaps.   Operations on heaps INSERT -  New rows can be placed in the first available page with sufficient space. [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2013/forwarding-pointers-in-heaps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Filtered Indexes to Improve Performance</title>
		<link>http://www.sql-server-performance.com/2013/sql-server-filtered-indexes-performance/</link>
		<comments>http://www.sql-server-performance.com/2013/sql-server-filtered-indexes-performance/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 06:57:51 +0000</pubDate>
		<dc:creator>Dinesh Asanka</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[filtered index]]></category>
		<category><![CDATA[index]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3591</guid>
		<description><![CDATA[A Filtered Index is a new index type introduced in SQL Server 2008. In simple terms, rather than adding a non-clustered index to the entire table, you can add an index to a filtered data set. The syntax for creating a filtered index is : CREATE NONCLUSTERED INDEX &#60;Index_Name&#62; ON &#60;Table Name&#62;(&#60;Column(s)&#62;) WHERE &#60;Filter Condition&#62; [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2013/sql-server-filtered-indexes-performance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Performance Tuning &#8211; Index Tuning</title>
		<link>http://www.sql-server-performance.com/2013/sql-server-index-tuning/</link>
		<comments>http://www.sql-server-performance.com/2013/sql-server-index-tuning/#comments</comments>
		<pubDate>Wed, 09 Jan 2013 01:01:29 +0000</pubDate>
		<dc:creator>Shehap El-Nagar</dc:creator>
				<category><![CDATA[Developer]]></category>
		<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[Tuning]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3457</guid>
		<description><![CDATA[In earlier installments of this series we looked at T-SQL Performance optimizations along with different T-SQL practices, we can now turn our attention to the second part of this series which is index Tuning In looking into Views we will break the article into two sections : Basic Index Tuning using DTA (Database Tuning Advisor) [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2013/sql-server-index-tuning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance Tuning Re-indexing and Update Statistics  – A Case Study</title>
		<link>http://www.sql-server-performance.com/2012/performance-tuning-re-indexing-update-statistics/</link>
		<comments>http://www.sql-server-performance.com/2012/performance-tuning-re-indexing-update-statistics/#comments</comments>
		<pubDate>Wed, 24 Oct 2012 06:20:31 +0000</pubDate>
		<dc:creator>satnam singh</dc:creator>
				<category><![CDATA[General DBA]]></category>
		<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[re-indexing]]></category>
		<category><![CDATA[Update Statistics]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=3288</guid>
		<description><![CDATA[Recently we started experiencing a very strange issue in our production reporting environment where the Re-indexing and Update Statistics operation suddenly began taking more than 2 days to complete and was thus causing blockage in the database which in turn caused impairment in application performance. Reporting Server Configuration Details: SQL Server Version: SQL Server 2005 [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2012/performance-tuning-re-indexing-update-statistics/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SQL Server Index Maintenance Performance Tuning for Large Tables</title>
		<link>http://www.sql-server-performance.com/2011/index-maintenance-performance/</link>
		<comments>http://www.sql-server-performance.com/2011/index-maintenance-performance/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 01:12:50 +0000</pubDate>
		<dc:creator>Frank Kalis</dc:creator>
				<category><![CDATA[Performance Tuning]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[index maintenance]]></category>
		<category><![CDATA[maintenance procedure]]></category>
		<category><![CDATA[physical stats]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1947</guid>
		<description><![CDATA[It is nothing really new that indexes have their right to exist in SQL Server. It is also nothing really new, that these indexes need to be maintained every now and then, even though this might be surprising for people who are lulled by the otherwise low maintenance for SQL Server. But if you think [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2011/index-maintenance-performance/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Index hints cannot be specified within a schema-bound object.</title>
		<link>http://www.sql-server-performance.com/2007/index-hint-cannot-be-specified-in-schema-bound-object/</link>
		<comments>http://www.sql-server-performance.com/2007/index-hint-cannot-be-specified-in-schema-bound-object/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 01:12:50 +0000</pubDate>
		<dc:creator>Frank Kalis</dc:creator>
				<category><![CDATA[Errors]]></category>
		<category><![CDATA[Hints]]></category>
		<category><![CDATA[index]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?=1084</guid>
		<description><![CDATA[Error Message:Msg 2011, Level 16, State 1, Procedure MyOrderView, Line 4Index hints cannot be specified within a schema-bound object. Severity level:16. Description:This error message appears when you try to use an index hint within a schema-bound object. Consequences:The T-SQL statement can be parsed, but causes the error at runtime. Resolution:Error of the Severity Level 16 [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2007/index-hint-cannot-be-specified-in-schema-bound-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server Performance Tuning Articles (All)</title>
		<link>http://www.sql-server-performance.com/2005/sql-server-performance-tuning-articles-all/</link>
		<comments>http://www.sql-server-performance.com/2005/sql-server-performance-tuning-articles-all/#comments</comments>
		<pubDate>Mon, 28 Mar 2005 03:55:58 +0000</pubDate>
		<dc:creator>SSPAdmin</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Draft]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[initial diagnosis]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[robin dewson]]></category>
		<category><![CDATA[schema changes]]></category>
		<guid isPermaLink="false">http://www.sql-server-performance.com/?p=1997</guid>
		<description><![CDATA[Performance Tuning for SQL Server Developers How to Take Advantage of SQL Server 2000 Performance Tuning Tools Implementing SQL Server in an OLTP Environment How to Do SQL Server Performance Trend Analysis Part 1: Using Performance Monitor to Log Data How to Do SQL Server Performance Trend Analysis Part 2: Storing Performance Data in SQL [...]]]></description>
		<wfw:commentRss>http://www.sql-server-performance.com/2005/sql-server-performance-tuning-articles-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
