tsql - How to let SQL Server know not to use Cache in Queries? -


Just a general question:

What is a query / command that I can not give to SQL Server Especially use the cache while executing the query?

I am looking for a query / order which I can set instead of the configuration setting. Is there no need to do this?

  dbcc free interception  

all cached process execution plans This will remove all subsequent processes, so that it can be re-compiled.

Each time it was called by adding "RECOMPILE" to a process definition, the reason for compiling the process would be the reason.

I do not believe that there is a way to clear the process cache of the same process execution plan (in SQL 2005 or earlier), and I doubt you can do it in 2008 too. Are there.


Comments

Popular posts from this blog

c# - How to capture HTTP packet with SharpPcap -

php - Multiple Select with Explode: only returns the word "Array" -

php - jQuery AJAX Post not working -