Multiple choice technology databases

You are preparing a new index on a table that has 1,500 rows. 10 rows are added to this table every day. The table already has a primary key, and the new index does not represent the order in which data in the table is to be stored. Updates to the table occur periodically but are infrequent. Which type of index would you create under this situation?

  1. Use a clustered index with a high FILLFACTOR setting

  2. Use a clustered index with a low FILLFACTOR setting

  3. Use a nonclustered index with a high FILLFACTOR setting

  4. Use a nonclustered index with a low FILLFACTOR setting

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

With only 1500 rows and slow growth (10/day), a nonclustered index is appropriate because the table already has a primary key (which is typically clustered). Low FILLFACTOR leaves space on leaf pages for the new rows being added, reducing page splits. Updates are infrequent, so the wasted space from low fill factor is acceptable. A clustered index would be redundant since one likely exists for the primary key.