Monday, July 4, 2011

What is procedure cache in SQL Server ?

The part of SQL server memory pool that is used to store execution plans is refered to as procedure cache in SQL Server.

DBCC FREEPROCCACHE
OR
DBCC FREEPROCCACHE WITH NO_INFOMSGS

is used to free procedure caches.

No comments:

Post a Comment

How to check local and global angular versions

 Use the command ng version (or ng v ) to find the version of Angular CLI in the current folder. Run it outside of the Angular project, to f...