InterviewSolution
Saved Bookmarks
| 1. |
Which of the following blocks are used for error handling in SQL Server?(a) TRY…CATCH(b) TRY…FINAL(c) TRY…END(d) CATCH…TRYI had been asked this question in an online quiz.I'm obligated to ask this question of Error Handling topic in portion Developing with SQL Server of SQL Server |
|
Answer» RIGHT answer is (a) TRY…CATCH Explanation: SQL Server 2005 introduced TRY…CATCH statement which helps US to handle the ERRORS effectively in the BACK end. |
|