In another question I was trying to research how to control SQL Server's query plan caches:

http://stackoverflow.com/questions/2593749/is-there-an-equivalent-of-optionrecompile-or-with-recompile-for-an-entire-c

...and I found trace flag 253 via this article:

http://www.sqlservercentral.com/Forums/Topic837613-146-1.aspx

The article is correct, if I run DBCC TRACEON(253) and then a number of queries, I can manually check the query plan cache and see that plans have not been inserted. If I run DBCC TRACEOFF(253), query plans are cached as normal.

So my question is...what else does this flag do? Does anybody know the official story?

link|improve this question

1  
As you've probably discovered, there doesn't appear to be any full documented list of trace flags available (even outside of BOL). I have a feeling that MS has only documented the few that are common and stable enough for a majority of users, and the rest get used during support tickets to diagnose issues. – Dane Apr 8 '10 at 6:02
Agreed. We're not going to use this anyway. – kamens Apr 8 '10 at 14:58
1  
You may find this useful: sqlservercentral.com/articles/trace+flags/70131 – Jon Seigel Jul 3 '11 at 3:37
feedback

1 Answer

Given this is info from a MVP who claims to have heard from a member of the product team, it looks to be as official as it gets:

http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/6739df93-7339-453f-ad3d-88321c1d919c

But I do think that Jon Seigels link is more useful - if he'd posted it as an answer, I'd certainly vote for that. :-)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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