70-464 Exam QuestionsBrowse all questions from this exam

70-464 Exam - Question 17


DRAG DROP -

You have a SQL Server 2012 database named DB1. DB1 contains four filegroups named FG1, FG2, FG3, and FG4. You execute the following code:

Exam 70-464 Question 17

Two million rows are added to dbo.Sales.

You need to move the data from the first partition to a new table named SalesHistory and, starting on December 31, 2012, repartition dbo.Sales to support new sales data for three months.

Which code segment should you execute?

To answer, move the appropriate code segments from the list of code segments to the answer area and arrange them in the correct order.

Select and Place:

Exam 70-464 Question 17
Show Answer
Correct Answer:
Exam 70-464 Question 17

Note:

Box 1 "" Box 2:

✑ You need to move the data from the first partition to a new table named SalesHistory.

First create the new table, then move the contents of the first partition.

Exam 70-464 Question 17

( Box 3 Box 4) Drop the partition scheme and then the partition function and the recreate them (box 5-box6). First recreate the partition function.

✑ You need, starting on December 31, 2012, repartition dbo.Sales to support new sales data for three months.

✑ A partition function can be dropped only if there are no partition schemes currently using the partition function. If there are partition schemes using the partition function, DROP PARTITION FUNCTION returns an error.

Discussion

3 comments
Sign in to comment
Luzix
Nov 3, 2020

Do you need to DROP PARTITION SCHEME PS1?

Luzix
Nov 3, 2020

If you tries to delete a partition scheme and it´s being used there is a error: The partition scheme "PS1" is currently being used to partition one or more tables.

LiamLin
Aug 28, 2021

I tried these: CREATE TABLE dbo.SalesHistory ( Date_key INT NOT NULL, Customer_key INT NOT NULL, Amount MONEY ) ON PS1(Date_key) GO ALTER TABLE Sales SWITCH PARTITION 1 TO dbo.SalesHistory PARTITION 1 GO ALTER PARTITION FUNCTION PF1() MERGE RANGE (20120331) GO ALTER PARTITION SCHEME PS1 NEXT USED [FG1] GO ALTER PARTITION FUNCTION PF1() SPLIT RANGE (20121231) GO