DP-300 · Question #359
SIMULATION You need to rebuild the index for PK_Address_AddressID in the SalesLT.Address table in db1. The solution must meet the following requirements: - Ensure that 30 percent of the index page…
Rebuilding an index with FILLFACTOR set to 70 ensures that 30% of each index page is left empty (reserved) for future inserts and updates, directly satisfying the requirement. This approach minimizes page splits because the reserved free space accommodates new data without…
Question
Exhibit
Explanation
Rebuilding an index with FILLFACTOR set to 70 ensures that 30% of each index page is left empty (reserved) for future inserts and updates, directly satisfying the requirement. This approach minimizes page splits because the reserved free space accommodates new data without requiring pages to be split, which is the primary cause of fragmentation and performance degradation. The correct T-SQL syntax is: ALTER INDEX PK_Address_AddressID ON SalesLT.Address REBUILD WITH (FILLFACTOR = 70), or equivalently via SSMS Index Properties by setting the Fill Factor to 70 under the 'Fragmentation' page.
Topics
Community Discussion
No community discussion yet for this question.
