• Further information to date - on both 2005 and 2012 servers, the usual divide by zero example is caught without showing any errors at all.

    BEGIN TRY

    PRINT 1/0

    END TRY

    BEGIN CATCH

    PRINT 'Div by 0'

    END CATCH