|
An important part of building CLR objects for use in SQL Server is good exception management. Part of this is raising the exception back to the calling operation so that it can be handled appropriately. In .NET this is handled using try/catch blocks in the code, and throwing a new instance of the Exception class with a message. This article will show how to cleanup the Exception message in TSQL to show only the needed information cleanly.
Read More..
|