I have a query that is taking a long time in the middle of a transaction. When I get the wait_type of the process it is PAGEIOLATCH_SH. What does this wait type mean and how can this be resolved?
|
2
|
|
|
|
|
|
From MSDN:
In practice, this almost always happens due to large scans over big tables. It almost never happens in queries that use indexes efficiently. If your query is like this:
, check that you have a composite index on If you don't have one, then you'll need either a full Both of them are very disk |
|||
|
