nerdexam
Microsoft

70-433 · Question #147

You need to manually raise an error. The error message that will be returned will display a message that contains parameters 1, 2, 3 sp_addmessage @msgnum = 6000, @severity = 16, @msgtext = N'Your…

The correct answer is A. RAISE_ERROR(60000, 16, 1, 1, 2, 3). See the full explanation below for the reasoning.

Question

You need to manually raise an error. The error message that will be returned will display a message that contains parameters 1, 2, 3 sp_addmessage @msgnum = 6000, @severity = 16, @msgtext = N'Your message (%d), (%d), (%d)'; GO You have to raise message to get correct message.. 'Your message (1), (2), (3).' Which statement will you use?

Options

  • ARAISE_ERROR(60000, 16, 1, 1, 2, 3)
  • BPending
  • CPending
  • DPending

How the community answered

(34 responses)
  • A
    76% (26)
  • B
    15% (5)
  • C
    3% (1)
  • D
    6% (2)

Community Discussion

No community discussion yet for this question.

Full 70-433 Practice