I've got a simple query running against SQL Server 2005
select * from Table where Col = 'someval'
The first time I execute the query can take > 15 secs. Subsiquent executes are back in < 1 sec.
How can I get SS2005 not to use any cached results. I've tried runnning
DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE
but this seems to have no effect on the query speed (still < 1 sec).