Microsoft
70-451 · Question #136
You are a database developer. You plan to design a database solution by using SQL Server 2008. A database contains a table that has a column defined as a smallint data type. The table is partitioned…
The correct answer is B. ALTER PARTITION FUNCTION MyRangePF1 () SPLIT RANGE (400); GO ALTER. See the full explanation below for the reasoning.
Question
You are a database developer. You plan to design a database solution by using SQL Server 2008. A database contains a table that has a column defined as a smallint data type. The table is partitioned on has boundaries of 100 and 1,000. The table must be altered to contain the following partitions:
< 100 >= 100 and < 400 >= 400 and < 700 >= 700 and < 1000 >= 1000 You need to alter the partition function to provide the required partitions. Which code fragment should you use?
Options
- AALTER PARTITION FUNCTION MyRangePF1 () SPLIT RANGE (399); GO ALTER
- BALTER PARTITION FUNCTION MyRangePF1 () SPLIT RANGE (400); GO ALTER
- CDROP PARTITION FUNCTION myRangePF1; GO
- DDROP PARTITION FUNCTION myRangePF1; GO
How the community answered
(57 responses)- A7% (4)
- B79% (45)
- C12% (7)
- D2% (1)
Community Discussion
No community discussion yet for this question.