Sql Server Clear Memory
Is it possible to clear RAM memory from data that SQL Server fill in? Is there any procedure or option which can do that?
Solution 1:
You can use
CHECKPOINT
DBCC DROPCLEANBUFFERS
to remove all data pages from memory. It's useful to test server performance: a query performs differently if the data pages it needs are not cached.
Post a Comment for "Sql Server Clear Memory"