Hi guys!
I have written the following store procedure in SQL server express 2005. But I get the above result when I parse it. Anyone for a tip
Thanks
Jean-Philippe
CREATE
PROCEDURE procInsertClient -- Add the parameters for the stored procedure here@ClientID
smallint OUTPUT,@FirstName
nchar(20),@LastName
nchar(20),@Phone
nchar(15),@Interest
text,@Newsletter
char(3)AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; INSERT INTO ClientHeader (FirstName, LastName, Phone, Email) VALUES (@FirstName, @LastName, @Phone, @Email)END
GO
BEGIN
INSERT INTO ClientDetails (Interest, Newsletter) VALUES (@Interest, @Newsletter)END
GO