The sum of all SQL Server matter that exist,
and the space in which all SQL Server events
occur or could occur.
Welcome to SQL Server Universe.com Sign in | Join | Help
in
Home SS SLUG Forums Articles Photos Downloads

Browse by Tags

All Tags » profiler   (RSS)
  • Re: CacheRemove

    Ok.  I believe the number is the main reason for the Remove Cache operation.  In fact when this number of deletes inserts happen, the statistics change drastically, and SQL Server will recompile the stored procedure always. If the statistics changes, It is good to include WITH RECOMPILE option in the stored procedure header so that it ...
    Posted to SQL Server Administration (Forum) by Preethi on April 17, 2008
  • Re: CacheRemove

    Hi Zahran,  Removing cache is not recommended (even though you can remove the cached plan). Plan caching increases the performance by reusing the same execution plan (instead of creating one for each execution).  Cache remove operation happens when the cache in memory become outdated.  If it is happening only once in a while, ...
    Posted to SQL Server Administration (Forum) by Preethi on April 16, 2008
Powered by Community Server, by Telligent Systems