<?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; Set Server Level FILLFACTOR Using T-SQL Script</title>
	<atom:link href="http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Subhro Saha</title>
		<link>http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-88224</link>
		<dc:creator><![CDATA[Subhro Saha]]></dc:creator>
		<pubDate>Sat, 18 Sep 2010 13:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-88224</guid>
		<description><![CDATA[Hi Daniela

Just to answer your first question- Yes we can see the value of the current Fill Factor by the following query:

SELECT OBJECT_NAME(object_id) AS &#039;Table/View&#039;
,name AS &#039;Index Name&#039;
,index_id AS &#039;ID of Index&#039;
,fill_factor AS &#039;Current Fill Factor&#039; 
FROM sys.indexes

From SQL Server 2005 and above you can use DMF- sys.dm_db_index_physical_stats to get all the information about your indexes..

I hope that helps.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi Daniela</p>
<p>Just to answer your first question- Yes we can see the value of the current Fill Factor by the following query:</p>
<p>SELECT OBJECT_NAME(object_id) AS &#8216;Table/View&#8217;<br />
,name AS &#8216;Index Name&#8217;<br />
,index_id AS &#8216;ID of Index&#8217;<br />
,fill_factor AS &#8216;Current Fill Factor&#8217;<br />
FROM sys.indexes</p>
<p>From SQL Server 2005 and above you can use DMF- sys.dm_db_index_physical_stats to get all the information about your indexes..</p>
<p>I hope that helps.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: daniela</title>
		<link>http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-67437</link>
		<dc:creator><![CDATA[daniela]]></dc:creator>
		<pubDate>Wed, 28 Apr 2010 14:29:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-67437</guid>
		<description><![CDATA[hello.
is there a way to know what value to set the fill factor ??
is there a way to know how much a table is used using T-SQL ??]]></description>
		<content:encoded><![CDATA[<p>hello.<br />
is there a way to know what value to set the fill factor ??<br />
is there a way to know how much a table is used using T-SQL ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-64340</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Fri, 02 Apr 2010 20:49:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-64340</guid>
		<description><![CDATA[Hello Kena,

If you are retreiving all records then defragmention of clustered index is enough. For the best use of any index, besides defragmentation it&#039;s statistics should also have updated. 

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Kena,</p>
<p>If you are retreiving all records then defragmention of clustered index is enough. For the best use of any index, besides defragmentation it&#8217;s statistics should also have updated. </p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kena</title>
		<link>http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-64260</link>
		<dc:creator><![CDATA[Kena]]></dc:creator>
		<pubDate>Thu, 01 Apr 2010 21:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/10/20/sql-server-set-server-level-fillfactor-using-t-sql-script/#comment-64260</guid>
		<description><![CDATA[Hello Pinal,

I have a table which contains 21155716 rows. currently, it takes more than 45 minutes to retrieve data while adding WITH(NOLOCK) on a table.

I did rebuild and reorganize indexes, and also I have set up fillfactors to 90% on indexes. Is there any other thing,  I should look into improve the performance on the table. Please let me know.

Thank you for all your help!
Kena]]></description>
		<content:encoded><![CDATA[<p>Hello Pinal,</p>
<p>I have a table which contains 21155716 rows. currently, it takes more than 45 minutes to retrieve data while adding WITH(NOLOCK) on a table.</p>
<p>I did rebuild and reorganize indexes, and also I have set up fillfactors to 90% on indexes. Is there any other thing,  I should look into improve the performance on the table. Please let me know.</p>
<p>Thank you for all your help!<br />
Kena</p>
]]></content:encoded>
	</item>
</channel>
</rss>
