The topic describes the DF194 T-SQL code analysis rule.
BEST PRACTICE
Stored procedure name begins with ‘sp_’.
It is recommended not to start the procedure name with ‘sp_’ as this prefix is commonly reserved for system stored procedures.
CREATE PROCEDURE dbo.sp_DemoProc
AS
BEGIN
SET NOCOUNT ON;
SELECT id FROM dbo.DemoTable;
END
GO
CREATE PROCEDURE dbo.DemoProc
AS
BEGIN
SET NOCOUNT ON;
SELECT id FROM dbo.DemoTable;
END
GO