70-465 · Question #10
Drag and Drop Question You need to recommend the actions that are required to partition a table. In which order should the four actions be performed? To answer, move the actions from the list of actio
The correct answer is Create filegroups.; Create a partition function.; Create a partition scheme.; Create the table.. Table partitioning in SQL Server requires a strict dependency chain: filegroups must exist first as the physical storage containers, then a partition function defines the boundary values that split data into ranges, then a partition scheme maps those ranges to specific filegroups
Question
Exhibit
Answer Area
Drag items
Correct arrangement
- Create filegroups.
- Create a partition function.
- Create a partition scheme.
- Create the table.
Explanation
Table partitioning in SQL Server requires a strict dependency chain: filegroups must exist first as the physical storage containers, then a partition function defines the boundary values that split data into ranges, then a partition scheme maps those ranges to specific filegroups, and finally the table is created using the partition scheme. Each step depends on the previous one existing - you cannot create a partition scheme without a partition function, and you cannot assign a partition scheme to a table that doesn't yet exist.
Topics
Community Discussion
No community discussion yet for this question.
