I have a query with T-SQL statements in SQL Server 2012 with SQLCMD Mode turned On running interactively in SSMS. There's a :on error exit
statement. When I run the query, the query window shows "Query completed with errors" but no error messages are displayed.
How do I get the error message to display?
Refer MSDN(RaiseError) to achieve what you are looking for:
Severity levels 11-19 will cause execution to jump to the CATCH block.
Note: Using severity levels from 20 through 25 are considered fatal, will cause abrupt termination of client connection.