InterviewSolution
Saved Bookmarks
| 1. |
When Should You Rebuilt Indexes? |
|
Answer» In 90% cases - NEVER. When the data in index is sparse (lots of HOLES in index, due to DELETES or UPDATES) and your query is usually range based. Also index blevel is one of the key indicators of performance of sql queries doing Index range scans. In 90% cases - NEVER. When the data in index is sparse (lots of holes in index, due to deletes or updates) and your query is usually range based. Also index blevel is one of the key indicators of performance of sql queries doing Index range scans. |
|