<?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; Enable Automatic Statistic Update on Database</title>
	<atom:link href="http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/</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: SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 19 of 31 Journey to SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-149240</link>
		<dc:creator><![CDATA[SQL SERVER – Interview Questions and Answers – Frequently Asked Questions – Day 19 of 31 Journey to SQLAuthority]]></dc:creator>
		<pubDate>Tue, 19 Jul 2011 01:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-149240</guid>
		<description><![CDATA[[...] (Read more here) [...]]]></description>
		<content:encoded><![CDATA[<p>[...] (Read more here) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amel Music</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-56739</link>
		<dc:creator><![CDATA[Amel Music]]></dc:creator>
		<pubDate>Thu, 15 Oct 2009 20:52:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-56739</guid>
		<description><![CDATA[Hi Pinal,
when statistic updates are performed? after every insert/update.. or when server has some free resources?]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
when statistic updates are performed? after every insert/update.. or when server has some free resources?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramdas</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-56730</link>
		<dc:creator><![CDATA[Ramdas]]></dc:creator>
		<pubDate>Thu, 15 Oct 2009 14:40:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-56730</guid>
		<description><![CDATA[Hi Pinal,
Is it always a good idea to have the Auto update statistics turned on. Are there instances where it needs to be turned off.]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
Is it always a good idea to have the Auto update statistics turned on. Are there instances where it needs to be turned off.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deep</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-56721</link>
		<dc:creator><![CDATA[deep]]></dc:creator>
		<pubDate>Thu, 15 Oct 2009 09:25:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-56721</guid>
		<description><![CDATA[Hello Pinal,

Is there a possibility of high resources utilization during the execution of the above processes? If yes, is it only executed during the schedule maintenance period?]]></description>
		<content:encoded><![CDATA[<p>Hello Pinal,</p>
<p>Is there a possibility of high resources utilization during the execution of the above processes? If yes, is it only executed during the schedule maintenance period?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-56719</link>
		<dc:creator><![CDATA[paul]]></dc:creator>
		<pubDate>Thu, 15 Oct 2009 08:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-56719</guid>
		<description><![CDATA[Hi Pinal,

how to export &amp; import statistics from production server to development server? 

thanks in advance]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>how to export &amp; import statistics from production server to development server? </p>
<p>thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aasim abdullah</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-56717</link>
		<dc:creator><![CDATA[aasim abdullah]]></dc:creator>
		<pubDate>Thu, 15 Oct 2009 06:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-56717</guid>
		<description><![CDATA[SELECT is_auto_create_stats_on,is_auto_update_stats_on 
FROM sys.databases
WHERE name = &#039;YOUR DATABASE NAME HERE&#039;]]></description>
		<content:encoded><![CDATA[<p>SELECT is_auto_create_stats_on,is_auto_update_stats_on<br />
FROM sys.databases<br />
WHERE name = &#8216;YOUR DATABASE NAME HERE&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chintan Shah</title>
		<link>http://blog.sqlauthority.com/2009/10/15/sql-server-enable-automatic-statistic-update-on-database/#comment-56713</link>
		<dc:creator><![CDATA[Chintan Shah]]></dc:creator>
		<pubDate>Thu, 15 Oct 2009 04:47:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=7065#comment-56713</guid>
		<description><![CDATA[Hi,

How can I check that whether Automatic Statistic Update is already enabled or not?

Is it Enabled by-default?]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can I check that whether Automatic Statistic Update is already enabled or not?</p>
<p>Is it Enabled by-default?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

