top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

RaiseError function in SQL Server, parameter explanation?

+4 votes
338 views
RaiseError function in SQL Server, parameter explanation?
posted Jan 4, 2014 by Atul Mishra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
What is the question and what is the problem you are facing?

1 Answer

0 votes

Generates an error message and initiates error processing for the session. RAISERROR can either reference a user-defined message stored in the sys.messages catalog view or build a message dynamically. The message is returned as a server error message to the calling application or to an associated CATCH block of a TRY…CATCH construct.

For more detail you can go to below link

http://msdn.microsoft.com/en-us/library/ms178592.aspx

answer Jan 15, 2014 by Neeraj Pandey
...