top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How would you handle error in SQL SERVER 2008?

0 votes
241 views
How would you handle error in SQL SERVER 2008?
posted Nov 25, 2014 by Vinitha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

SQL Server now supports the use of TRY…CATCH constructs for providing rich error handling. TRY…CATCH lets us build error handling at the level we need, in the way we need to, by setting a region where if any error occurs, it will break out of the region and head to an error handler. The basic structure is as follows:

BEGIN TRY
<code>
END TRY
BEGIN CATCH
<code>
END CATCH

So if any error occurs in the TRY block, execution is diverted to the CATCH block, and the error can be dealt.

answer Nov 25, 2014 by Manikandan J
...