I know SQL server 2005 does some amount of execution plan caching, but would that be enough to create a difference of hours between the same query being run twice? The first time it takes 3 hours the next time it takes 1 min? Is that even possible?
|
feedback
|
|
SQL Server will not just cache the execution plan but also the data if you do SET STATISTICS IO ON and look at the output you will see logical reads and physical reads, logical reads are from RAM, physical reads are from disk. So the first time you will see a number for physical reads while if you run it again you should see a value for logical reads 3 hours seems long, could also be because of blocking/locking, stale stats etc | |||
feedback
|
|
Theoretically, when run for the first time (a "cold run"), the table and index pages your query required could have been located on disk. The query fetched them and the engine put them into the cache. The second run of the query (a "hot run") used only the data from the cache which is of course much faster. However, 3 hours is more than enough to populate even the largest cache, so this hardly can be the case. Most probably, the other execution plan was used in the second run (maybe due to the statistics update). | |||
|
feedback
|
NO! Not a chance!The difference is elsewhere! In all likelihood, the difference is due to either:
The difference mentioned: 3 hours, down to 1 minute or so is so drastic, that I don't think that cached data alone could explain it. Here are a few suggestions to find out more:
The statements to clear caches are (there might be other ways to do so with newer version of SQL-Server):
| ||||
|
feedback
|
|
No. Most likely the first time your query was blocked (eg. by another session, or by a growth event), while the second time was not. To give an example take this query: Point here is not that you had or had not a growth event occurring during execution. Point is that if the query lasts 3 hours, you need to understand why. Activity Monitor is a great start. Reading up a white paper like Performance Tunning Wait Queues would be even better. | |||
|
feedback
|