ease20022002
Technical User
Hi,
(the following stored procedure can be placed in anyones query window and run b.c it does not have any relation to any tables. Only functions in 2005)
What I am trying to do is create a stored procedure that will take the value of the GetDate() function (Current Date) and manipulate the date and return a value in Varchar(10).
The stored procedure is set up to give me the monday date regardless of what day it is in the week. I ALREADY have a function that does this for me, but I also NEED to have this in a stored procedure. The preceding sentence is non-negotiable .
Unfortunately I can't get the stored procedure to accept the GetDate() value. The object is to get this stored procedure called from an SSIS ETL package.
The following is the SP:
Any help would be appreciated.
Thanks
(the following stored procedure can be placed in anyones query window and run b.c it does not have any relation to any tables. Only functions in 2005)
What I am trying to do is create a stored procedure that will take the value of the GetDate() function (Current Date) and manipulate the date and return a value in Varchar(10).
The stored procedure is set up to give me the monday date regardless of what day it is in the week. I ALREADY have a function that does this for me, but I also NEED to have this in a stored procedure. The preceding sentence is non-negotiable .
Unfortunately I can't get the stored procedure to accept the GetDate() value. The object is to get this stored procedure called from an SSIS ETL package.
The following is the SP:
Code:
ALTER PROCEDURE [dbo].[spCognosFileName]
-- Add the parameters for the stored procedure here
@CurrentDate DateTime
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
Declare @ConvertedFormat DateTime
Set @ConvertedFormat = dateadd(yyyy, datepart(yyyy, dateadd(weekday,1-datepart(weekday, @CurrentDate),@CurrentDate))-1900, 0)
+ dateadd(dy, datepart(dy, dateadd(weekday,1-datepart(weekday, @CurrentDate),@CurrentDate)),0)
Return
Select Convert(Varchar(10),@ConvertedFormat,112) + '.txt'
END
Any help would be appreciated.
Thanks