If you are anything like me, you want to know if your updates to your database have improved on a 0-60 basis or not.
Unfortunately, if you run the same query back-to-back, then you will often run into SQL Server caching the query and optimizing your results.
The following will clean out the cache for your testing and analysis purposes.
USE {DATABASE}; GO CHECKPOINT; GO DBCC DROPCLEANBUFFERS; GO
Leave a Reply