Microsoft
70-433 · Question #53
You have a table named AccountsReceivable. The table has no indexes. There are 75,000 rows in the table. You have a partition function named FG_AccountData. The AccountsReceivable table is defined…
The correct answer is C. CREATE CLUSTERED INDEX idx_AccountsReceivable. See the full explanation below for the reasoning.
Question
You have a table named AccountsReceivable. The table has no indexes. There are 75,000 rows in the table. You have a partition function named FG_AccountData. The AccountsReceivable table is defined in the following Transact-SQL statement:
CREATE TABLE AccountsReceivable ( column_a INT NOT NULL, column_b VARCHAR(20) NULL) ON [PRIMARY]; You need to move the AccountsReceivable table from the PRIMARY file group to FG_AccountData. Which Transact-SQL statement should you use?
Options
- ACREATE CLUSTERED INDEX idx_AccountsReceivable
- BCREATE NONCLUSTERED INDEX idx_AccountsReceivable
- CCREATE CLUSTERED INDEX idx_AccountsReceivable
- DCREATE NONCLUSTERED INDEX idx_AccountsReceivable
How the community answered
(48 responses)- A6% (3)
- B2% (1)
- C83% (40)
- D8% (4)
Community Discussion
No community discussion yet for this question.