When comparing the execution time of two different queries, it's important to clear the cache to make sure that the execution of the first query does not alter the performance of the second.
In a Google Search, I could find these commands:
DBCC FREESYSTEMCACHE
DBCC FREESESSIONCACHE
DBCC FREEPROCCACHE
In fact, my queries are taking a more realistic time to complete after several executions than before. However, I'm not sure this is the recommended technique.
What's the best practice?
