|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Today @ 7:11 AM
Points: 877,
Visits: 1,159
|
|
Oleg Netchaev (11/15/2010)
Carlo Romagnano (11/14/2010) In sql2005, I get an error: "plan_handle" is not a recognized table hints option.
Carlo, Please check compat level of your SQL Server 2005 AdventureWorks database. If the level is 80 then you should get "plan_handle" is not a recognized table hints option error, but if it is 90 as it should be then the script should run just fine. Oleg Thanks for resolving the issue, due to project work not able to answer.
Thanks
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Today @ 7:11 AM
Points: 877,
Visits: 1,159
|
|
Hugo Kornelis (11/14/2010) Good question. I answered wrong; I thought all statements were cached.
Hardik, do you have any references where I can read more about this? Thanks Hugo. Sorry I don't have material for the same. I learned this when I face similar type of issue (I asked Pinal who is SQL Server MVP). So, thought to share to all
Thanks
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Today @ 7:11 AM
Points: 877,
Visits: 1,159
|
|
Carlo Romagnano (11/15/2010)
Execute the batch without the 'GO' EXEC uspLogError SELECT st.text QueryText,objtype FROM sys.dm_exec_cached_plans CROSS APPLY sys.dm_exec_sql_text(plan_handle) AS st WHERE text LIKE N'%uspLogError%' Result: CREATE PROCEDURE [dbo].[uspLogError] ....,'Proc' EXEC uspLogError SELECT st.text QueryText FROM sys.dm_exec_cached_plans ....,'Adhoc' The body of the stored procedure is cached in the objtype = 'Proc' (see also other info about the proc). the second record is the plan stored with objtype = 'Adhoc' See also: http://msdn.microsoft.com/en-us/library/ms187404.aspx Execute the batch with GO - is the real part. thanks for validating & provide to link to all.
Thanks
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Today @ 7:11 AM
Points: 877,
Visits: 1,159
|
|
RichardDouglas (11/15/2010) Good question, thanks for taking the time to help educate the SQL community.
I look at these DMV's a lot so thankfully answered this one correctly. Good to know.
Thanks
|
|
|
|
|
SSCoach
         
Group: General Forum Members
Last Login: 2 days ago @ 1:07 PM
Points: 18,733,
Visits: 12,332
|
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Today @ 5:45 AM
Points: 457,
Visits: 316
|
|
Good Question
_____________________________________________
Kindest Regards, - Tushar  MCP,MCDBA(SQL 2000),MCTS(SQL 2005),MCITP(SQL 2005)
" Most Good Experience Comes From Judgement, Most Judgement Comes From Bad Experience "
|
|
|
|