TRY…CATCH constructs do not trap the following conditions:
The following types of errors are not handled by a CATCH block when they occur at the same level of execution as the TRY…CATCH construct:
These errors are returned to the level that ran the batch, stored procedure, or trigger.
When the table doesn’t exists, select statement cannot be caught in normal statement
BEGIN TRY
-- Table does not exist; object name resolution
-- error not caught.
SELECT * FROM NonexistentTable;
END TRY
BEGIN CATCH
SELECT
ERROR_NUMBER() AS ErrorNumber
,ERROR_MESSAGE() AS ErrorMessage;
END CATCH
It cannot be caught but it will caught if the same statement will be used in a procedure, let's see
CREATE PROC usp_SelectwithoutTable
AS
SELECT * FROM NonexistentTable
Go
Now execute the bellow procedure in try catch construct:
BEGIN TRY
EXECUTE usp_SelectwithoutTable;
END TRY
BEGIN CATCH
SELECT
ERROR_NUMBER() AS ErrNumber, ERROR_MESSAGE() AS ErrMessage;
END CATCH;
Now error will caught
![]() |
Having 13+ years of experience in Microsoft Technologies (C#, ASP.Net, MVC and SQL Server). Worked with Metaoption LLC, for more than 9 years and still with the same company. Always ready to learn new technologies and tricks.
|
By Ali Adravi On 28 Dec, 12 Viewed: 589 |
We can not directly change a column to identity columns, say we have a primary key column or any normal column in our table and want to make it identity column then we cannot do it directly by altering the table but there are only two way to change column to identity column 1. Create a new... By Ali Adravi On 02 May 2013 Viewed: 1,101
There are many ways which can help us to save our time to write some repeated code or to do some repeated action, in this post we will see some very common code which we need very frequently in our development life. I am not saying that after this post you will save your half say work every day but... By Ali Adravi On 31 Mar 2013 Viewed: 940
In SQL server there are decimal and money data type to store precision and scale both together or say decimal values. Suppose we want to get precision and scale separately then how to get it. There are many ways to do this but there is a function in SQL named PARSENAME which can be used to get... By Myghty On 26 Mar 2013 Viewed: 3,420
To write a good performing procedure or function we should be aware about available wildcards in SQL Server. I found most developer depends on ‘%’ wildcard only while we have others as well. In this article we will discuss all the available wildcards in detail with examples. First of all let’s see... By Dev D On 25 Feb 2013 Viewed: 683
When we need to concatenate two columns simply we can use `+` sign and that is correct, but what if any of them is null, Will it return what we want, NO, it will return null. So let's discuss how we should concatenate two or more columns without creating extra space or extra comma problem. Let's... By Ali Adravi On 13 Feb 2013 Viewed: 12,838