I have a query which is superfast in SQL Server Management STudio and super slow when run under sp_ExecuteSQL.

Is this to do with caching of execution plans not happening when run under spExecuteSQL?

link|improve this question

73% accept rate
5  
I wonder when the "sp_executesql doesn't cache plans" myth will ever die - read The curse and blessings of dynamic SQL – OMG Ponies Sep 14 '10 at 15:52
@OMG Ponies - could parameter sniffing be an issue with sp_ExecuteSQL? – JNK Sep 14 '10 at 16:48
@JNK: Since experiencing the behavior, I've put in anti-param sniffing by default anyway. – OMG Ponies Sep 14 '10 at 17:25
@JNK - It caches the plan and reuses it so yes. – Martin Smith Sep 14 '10 at 21:55
feedback

1 Answer

up vote 3 down vote accepted

No.

You can see both execution plans and compare them using the following query.

SELECT usecounts, cacheobjtype, objtype, text, query_plan, value as set_options
FROM sys.dm_exec_cached_plans 
CROSS APPLY sys.dm_exec_sql_text(plan_handle) 
CROSS APPLY sys.dm_exec_query_plan(plan_handle) 
cross APPLY sys.dm_exec_plan_attributes(plan_handle) AS epa
where text like '%Some unique string in your query%' 
                                          and attribute='set_options'

The sp_executesql version will have an objtype of "prepared"

link|improve this answer
1  
Why would execution plans be so radically different? For example, I've looked at my query execution plan directly from Sql Management Studio (takes 3 seconds), and the execution plan from the sp_executeSql (takes 5+ minutes). the plan from the sp_executeSql completely ignores a few of the key indexes that the direct call found. Can someone explain why a call from management studio finds keys, but the call via the sp_ExecuteSql does not? – Nathan Tregillus Mar 28 '11 at 16:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.