With SQL Server 7 in Query Analyzer, I can run my stored procedures with CALL but not with exec or execute.
This is the form I must use.
I have tried several variations on EXEC without success.
What change to the following would make it run?
This is the form I must use.
Code:
DECLARE @id INT
{CALL proc_create_TABLE3_row('again','again',@id)}
I have tried several variations on EXEC without success.
What change to the following would make it run?
Code:
DECLARE @id INT
EXEC proc_create_TABLE3_row('again','again',@id)