Below are some good practices for creating stored procedures in SQL Server database.
1) Include SET NOCOUNT ON Statement in your stored procedure
2) Use Schema name with tables objects in the stored procedure
3) Do not use SP_ prefix to name stored procedure

Recent comments