Transactions and Error Handling in SQL Server
Miriam Antona
Software Engineer
INSERT INTO products (product_name, stock, price)
VALUES ('Trek Powerfly 5 - 2018', 10, 3499.99);
Msg 2627, Level 14, State 1, Line 1
Violation of UNIQUE KEY constraint 'unique_name'.
Cannot insert duplicate key in object 'dbo.products'.
The duplicate key value is (Trek Powerfly 5 - 2018).
Error number
select * from sys.messages
| message_id | language_id | severity | ... | text |
|------------|-------------|----------|-----|-----------------------------------------------------------------|
| ... | ... | ... | ... | ... |
| 2627 | 1033 | 14 | ... | Violation of %ls constraint '%.*ls'. Cannot insert duplicate... |
| ... | ... | ... | ... | ... |
Severity level
State
Line
Procedure
Severity lower than 11 (11-19 are catchable)
Severity of 20 or higher that stop the connection
Compilation errors: objects and columns that don't exist
BEGIN TRY
SELECT non_existent_column FROM products;
END TRY
BEGIN CATCH
SELECT 'You are in the CATCH block' AS message;
END CATCH
Msg 207, Level 16, State 1, Line 2
Invalid column name 'non_existent_column'.
Transactions and Error Handling in SQL Server