<?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; Recompile All The Stored Procedure on Specific Table</title>
	<atom:link href="http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:12:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: mahesh kumar</title>
		<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-137767</link>
		<dc:creator><![CDATA[mahesh kumar]]></dc:creator>
		<pubDate>Tue, 31 May 2011 11:07:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-137767</guid>
		<description><![CDATA[The function or expression &quot;like&quot; in a query from .Net SqlClient Data Provider in [usf] submitted from 15814-68893 by utsav can cause index suppression resulting in poor performance due to a scan being performed instead of a seek.]]></description>
		<content:encoded><![CDATA[<p>The function or expression &#8220;like&#8221; in a query from .Net SqlClient Data Provider in [usf] submitted from 15814-68893 by utsav can cause index suppression resulting in poor performance due to a scan being performed instead of a seek.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-61585</link>
		<dc:creator><![CDATA[Pinal Dave]]></dc:creator>
		<pubDate>Mon, 22 Feb 2010 12:28:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-61585</guid>
		<description><![CDATA[Hello Sarad,

Please visit my blog:

http://blog.sqlauthority.com/2010/02/18/sql-server-plan-recompilation-and-reduce-recompilation-performance-tuning/

Regards,
Pinal Dave]]></description>
		<content:encoded><![CDATA[<p>Hello Sarad,</p>
<p>Please visit my blog:</p>
<p><a href="http://blog.sqlauthority.com/2010/02/18/sql-server-plan-recompilation-and-reduce-recompilation-performance-tuning/" rel="nofollow">http://blog.sqlauthority.com/2010/02/18/sql-server-plan-recompilation-and-reduce-recompilation-performance-tuning/</a></p>
<p>Regards,<br />
Pinal Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sharad</title>
		<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-61563</link>
		<dc:creator><![CDATA[sharad]]></dc:creator>
		<pubDate>Mon, 22 Feb 2010 05:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-61563</guid>
		<description><![CDATA[Dear sir ,

in  one company i faced interview for T-SQL developer 
in there technical person asked me what is recompilation 
of store procedure ? i m not able to give answer so please
let me know answer of this question

regards
sharad]]></description>
		<content:encoded><![CDATA[<p>Dear sir ,</p>
<p>in  one company i faced interview for T-SQL developer<br />
in there technical person asked me what is recompilation<br />
of store procedure ? i m not able to give answer so please<br />
let me know answer of this question</p>
<p>regards<br />
sharad</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gene</title>
		<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-41770</link>
		<dc:creator><![CDATA[Gene]]></dc:creator>
		<pubDate>Mon, 18 Aug 2008 21:09:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-41770</guid>
		<description><![CDATA[I&#039;m trying to find out if I can use any of the following to select between one of two CTEs in a master data set.
Which one will work best.
IIF()
Switch()
CASE()

Code starts out with With CTE### as 
(
select (fields)
from (
select (fields)
from
where (filters)
groub by (groups)
)Pull
Pivot
(Sum()
for month in
(1,2,3,....) as Pvt###
Group by ()
Union all
select (fields)
from (
select (fields)
from
where (filters)
groub by (groups)
)Pull
Pivot
(Sum()
for month in
(1,2,3,....) as Pvt###
Group by ()
)
Select ()
from CTE###
group by ()
Order by ()



__________
thanks]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to find out if I can use any of the following to select between one of two CTEs in a master data set.<br />
Which one will work best.<br />
IIF()<br />
Switch()<br />
CASE()</p>
<p>Code starts out with With CTE### as<br />
(<br />
select (fields)<br />
from (<br />
select (fields)<br />
from<br />
where (filters)<br />
groub by (groups)<br />
)Pull<br />
Pivot<br />
(Sum()<br />
for month in<br />
(1,2,3,&#8230;.) as Pvt###<br />
Group by ()<br />
Union all<br />
select (fields)<br />
from (<br />
select (fields)<br />
from<br />
where (filters)<br />
groub by (groups)<br />
)Pull<br />
Pivot<br />
(Sum()<br />
for month in<br />
(1,2,3,&#8230;.) as Pvt###<br />
Group by ()<br />
)<br />
Select ()<br />
from CTE###<br />
group by ()<br />
Order by ()</p>
<p>__________<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-41618</link>
		<dc:creator><![CDATA[Rob]]></dc:creator>
		<pubDate>Tue, 12 Aug 2008 18:09:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-41618</guid>
		<description><![CDATA[Here is a quick way:

SELECT     NAME
                   FROM       sysobjects
                   WHERE      type = &#039;P&#039; AND uid = 1
                   ORDER BY   Name]]></description>
		<content:encoded><![CDATA[<p>Here is a quick way:</p>
<p>SELECT     NAME<br />
                   FROM       sysobjects<br />
                   WHERE      type = &#8216;P&#8217; AND uid = 1<br />
                   ORDER BY   Name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hairsh</title>
		<link>http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-34124</link>
		<dc:creator><![CDATA[Hairsh]]></dc:creator>
		<pubDate>Wed, 05 Mar 2008 06:08:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/06/29/sql-server-recompile-all-the-stored-procedure-on-specific-table/#comment-34124</guid>
		<description><![CDATA[Hi,

could you please tell me how to find the sps which are marked for recompile.

Thanks in advance]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>could you please tell me how to find the sps which are marked for recompile.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
</channel>
</rss>

