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)- A76% (26)
- B15% (5)
- C3% (1)
- D6% (2)
Community Discussion
No community discussion yet for this question.