Click here to Skip to main content
15,904,926 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
there are multiple query which catch in production server..
Can use DBCC FREEPROCCACHE on production server ???
Please guide me...
Posted

1 solution

Yes u can use it.
Just for your information..

DBCC commands to free several SQL Server memory caches:

SQL
DBCC FREESYSTEMCACHE

Releases all unused cache entries from all caches. The SQL Server 2005 Database Engine proactively cleans up unused cache entries in the background to make memory available for current entries.

SQL
DBCC FREESESSIONCACHE

Flushes the distributed query connection cache used by distributed queries against an instance of Microsoft SQL Server.

SQL
DBCC FREEPROCCACHE

Removes all elements from the procedure cache.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900