nerdexam
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)
  • A
    6% (3)
  • B
    2% (1)
  • C
    83% (40)
  • D
    8% (4)

Community Discussion

No community discussion yet for this question.

Full 70-433 Practice