DavidPike
Programmer
- Oct 9, 2007
- 18
I am using the folowing CREATE, SET and RETURN statements but nothing is returning from my proc, any tips?
CREATE PROCEDURE dbo.sp_ReplicateChildSchedule
@P_Child nvarchar(50),
@P_WeekToCopy DateTime ,
@P_WeekBeginDate DateTime,
@P_Msg Varchar(50) OUTPUT
AS
SET @P_Msg = '0 schedules replicated'
RETURN
CREATE PROCEDURE dbo.sp_ReplicateChildSchedule
@P_Child nvarchar(50),
@P_WeekToCopy DateTime ,
@P_WeekBeginDate DateTime,
@P_Msg Varchar(50) OUTPUT
AS
SET @P_Msg = '0 schedules replicated'
RETURN