ALTER PROCEDURE [dbo].[sp_Products_GetRecordCount]
AS 
BEGIN 
   SET NOCOUNT ON;
 
   SELECT COUNT (*) AS RecordCount FROM [dbo].[Products]
END