Flush the cache. Some, and possibly a lot, of data may be cached in memory.
Also, since a select query does not require any transaction logging or updating of indexes or statistics, a select query would have substantially less IO than an insert, update, or delete query.
Flush the cache and then run: Insert Into testtable Select * From testtable Order By SomeNonClusteredField
|||hi
I did flush the cache prior to running this statement. Why doent SQL use the I\O to its full potential if that is the only process running on the box? I was expecting to see the I\O near to saturated.