<?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; Size of Index Table for Each Index &#8211; Solution</title>
	<atom:link href="http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Sun, 12 Feb 2012 09:22:39 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: DBA100</title>
		<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/#comment-139392</link>
		<dc:creator><![CDATA[DBA100]]></dc:creator>
		<pubDate>Tue, 07 Jun 2011 08:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7444#comment-139392</guid>
		<description><![CDATA[Any one test if the following from Nimit Parikh works?

-----------------------------------------------------
USE AdventureWorks
 EXEC sp_MSindexspace ‘HumanResources.Shift’
 
for code 

EXEC sp_helptext ‘sp_MSindexspace’
-----------------------------------------------------------]]></description>
		<content:encoded><![CDATA[<p>Any one test if the following from Nimit Parikh works?</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
USE AdventureWorks<br />
 EXEC sp_MSindexspace ‘HumanResources.Shift’</p>
<p>for code </p>
<p>EXEC sp_helptext ‘sp_MSindexspace’<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nagarathna</title>
		<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/#comment-80489</link>
		<dc:creator><![CDATA[Nagarathna]]></dc:creator>
		<pubDate>Fri, 16 Jul 2010 09:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7444#comment-80489</guid>
		<description><![CDATA[Nice article]]></description>
		<content:encoded><![CDATA[<p>Nice article</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER – Size of Index Table for Each Index – Solution 2 Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/#comment-69834</link>
		<dc:creator><![CDATA[SQL SERVER – Size of Index Table for Each Index – Solution 2 Journey to SQL Authority with Pinal Dave]]></dc:creator>
		<pubDate>Sun, 09 May 2010 01:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7444#comment-69834</guid>
		<description><![CDATA[[...] Size for Each Index on Table. I had received good amount answers and I had blogged about that here SQL SERVER – Size of Index Table for Each Index – Solution. As a comment to that blog I have received another very interesting comment and that provides near [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Size for Each Index on Table. I had received good amount answers and I had blogged about that here SQL SERVER – Size of Index Table for Each Index – Solution. As a comment to that blog I have received another very interesting comment and that provides near [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nimit Parikh</title>
		<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/#comment-61129</link>
		<dc:creator><![CDATA[Nimit Parikh]]></dc:creator>
		<pubDate>Sun, 14 Feb 2010 19:51:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7444#comment-61129</guid>
		<description><![CDATA[Use undocumented procedure.

USE AdventureWorks 
EXEC sp_MSindexspace &#039;HumanResources.Shift&#039;


for code 

EXEC sp_helptext &#039;sp_MSindexspace&#039;]]></description>
		<content:encoded><![CDATA[<p>Use undocumented procedure.</p>
<p>USE AdventureWorks<br />
EXEC sp_MSindexspace &#8216;HumanResources.Shift&#8217;</p>
<p>for code </p>
<p>EXEC sp_helptext &#8216;sp_MSindexspace&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rama Mathanmohan</title>
		<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/#comment-58076</link>
		<dc:creator><![CDATA[Rama Mathanmohan]]></dc:creator>
		<pubDate>Tue, 01 Dec 2009 22:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7444#comment-58076</guid>
		<description><![CDATA[Hi Pinal,

I found something wrong with both of the queries.  When it comes to heap and clustered index it tends to report less.  Please find my script which tends to agree with sp_spaceused.  Your ccoments please


select 
	object_name(i.object_id) as TableName,
	i.name as IndexName,
	i.index_id as IndexID,
	8 * SUM(a.used_pages) as &#039;Indexsize(KB)&#039; 
	FROM sys.indexes as i
	JOIN sys.partitions as p ON p.object_id = i.object_id and p.index_id = i.index_id
	JOIN sys.allocation_units as a ON a.container_id = p.partition_id
Group by i.object_id,i.index_id,i.name
Order By object_name(i.object_id),i.index_id

Rama Mathanmohan]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I found something wrong with both of the queries.  When it comes to heap and clustered index it tends to report less.  Please find my script which tends to agree with sp_spaceused.  Your ccoments please</p>
<p>select<br />
	object_name(i.object_id) as TableName,<br />
	i.name as IndexName,<br />
	i.index_id as IndexID,<br />
	8 * SUM(a.used_pages) as &#8216;Indexsize(KB)&#8217;<br />
	FROM sys.indexes as i<br />
	JOIN sys.partitions as p ON p.object_id = i.object_id and p.index_id = i.index_id<br />
	JOIN sys.allocation_units as a ON a.container_id = p.partition_id<br />
Group by i.object_id,i.index_id,i.name<br />
Order By object_name(i.object_id),i.index_id</p>
<p>Rama Mathanmohan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gangadhar Naidu</title>
		<link>http://blog.sqlauthority.com/2009/11/30/sql-server-size-of-index-table-for-each-index-solution/#comment-58050</link>
		<dc:creator><![CDATA[Gangadhar Naidu]]></dc:creator>
		<pubDate>Tue, 01 Dec 2009 05:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7444#comment-58050</guid>
		<description><![CDATA[Hi Pinal,

How to decrease index size. Is there any way?

Thank you,
Gangadhar]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>How to decrease index size. Is there any way?</p>
<p>Thank you,<br />
Gangadhar</p>
]]></content:encoded>
	</item>
</channel>
</rss>

