Hi all,
I have written the following Stored Procedure:
DECLARE @ERRORCODE int
EXECUTE @ERRORCODE = ProcessTimeLog '12/1/2006', '12/10/2006'
I would like to modify this Stored Procedure so that the second date parameter always equals today's date. I made the following changes but I keep getting an error:
DECLARE @ERRORCODE int
EXECUTE @ERRORCODE = ProcessTimeLog '01/01/06', GetDate()
I get the following error when I execute the procedure:
Server: Msg 170, Level 15, State 1, Line 2
Line 2: Incorrect syntax near ')'.
What am I doing wrong?
Thanks in advance,
elmorro
I have written the following Stored Procedure:
DECLARE @ERRORCODE int
EXECUTE @ERRORCODE = ProcessTimeLog '12/1/2006', '12/10/2006'
I would like to modify this Stored Procedure so that the second date parameter always equals today's date. I made the following changes but I keep getting an error:
DECLARE @ERRORCODE int
EXECUTE @ERRORCODE = ProcessTimeLog '01/01/06', GetDate()
I get the following error when I execute the procedure:
Server: Msg 170, Level 15, State 1, Line 2
Line 2: Incorrect syntax near ')'.
What am I doing wrong?
Thanks in advance,
elmorro