T-SQL Stored Procedure Coding Guidelines

Transact-SQL (T-SQL) stored procedures should be treated just like reusable application code. You should follow these suggested guidelines to ensure that your stored procedures are solid and robust:

Image Check all parameters for valid values and return an error message if a problem exists.

Image Be sure that the parameter data types match the column data types they are compared against to avoid data type mismatches and poor query optimization.

Use Try...Catch logic or check the @@error system function after each ...

Get Microsoft SQL Server 2014 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.