Hi all I was wondering if you could help I keep getting this error when I try to build this stored procedure in sql 2008
CREATE PROCEDURE dbo.TutorialAddHeadline @title varchar(100), @content varchar(MAX), @publisher varchar(50), @linkurl varchar(255) AS BEGIN DECLARE @hash binary(16); SET @hash = dbo.TutorialHash(@title, @content); VALUES(@publisher, @title, @content, @linkurl, @hash); END
thanks