InterviewSolution
Saved Bookmarks
| 1. |
By default, indexes are stored in the ______ filegroup as the base table on which the index is created.(a) same(b) different(c) may be same or different(d) none of the mentionedI got this question in class test.I need to ask this question from Indexing Strategies topic in chapter Performance Tuning and Optimization of SQL Server |
|
Answer» RIGHT choice is (a) same The explanation: A nonpartitioned CLUSTERED index and the BASE table ALWAYS RESIDE in the same filegroup. |
|