Anyone have an example of how to trap and exception within a T-SQL transaction and save diagnostic details on why the transaction failed to an error log? If you insert the exception data to an error table this information gets lost when you rollback the transaction. I'm sure I'm missing something obvious :)
Yes, you log into a variable, roll back the transaction in the CATCH block and then insert the variable into the error log table.