I want to SET DATEFIRST in my function but it is not allowed.
SET DATEFIRST 1
I can add the code in a SP and call the SP from the function but I am not keen on doing that.
I can SET the DATEFIRST before I call my function but I am not keen on doing that as well.
Any other work around?
EDIT
Below is the code I want to use in my FUNCTION to return the total working days of the month. But I cant add this code into the FUNCTION because of my DATEFIRST
DECLARE @my int
DECLARE @myDeduct int
DECLARE @day INT
DECLARE @mydate DATETIME
DECLARE @TotalDays INT
SET @mydate = GETDATE()
SET @myDeduct = 0
IF (@@DATEFIRST + DATEPART(DW, @mydate)) % 7 not in (0,1)
SET DateFirst 1 -- Set it monday=1 (value)
--Saturday and Sunday on the first and last day of a month will Deduct 1
IF (DATEPART(weekday,(DATEADD(dd,-(DAY(@mydate)-1),@mydate))) > 5)
SET @myDeduct = @myDeduct + 1
IF (DATEPART(weekday,(DATEADD(dd,-(DAY(DATEADD(mm,1,@mydate))),DATEADD(mm,1,@mydate)))) > 5)
SET @myDeduct = @myDeduct + 1
SET @my = day(DATEADD(dd,-(DAY(DATEADD(mm,1,@mydate))),DATEADD(mm,1,@mydate)))
Set @TotalDays = (select (((@my/7) * 5 + (@my%7)) - @myDeduct))
Select @TotalDays
My usual workaround is to use “known-good” dates for my comparisons.
Say, for instance, that I need to check that a date is a saturday. Rather than relying on
DATEFIRSTor language settings (for usingDATENAME), I instead say:I know that 14th July 2012 was a Saturday, so I’ve performed the check without relying on any external settings.
The expression
(DATEPART(weekday,DateToCheck) + @@DATEFIRST) % 7will always produce the value 0 for Saturday, 1 for Sunday, 2 for Monday, etc.So, I’d advise you to create a table:
Populating this table is a one off exercise.
NormalisedDaywould be the value computed by the expression I’ve given above.To compute the
DaysInMonthgiven a particular date, you can use the expression:Now all your function has to do is look up the value in the table.
(Of course, all of the rows where
DaysInMonthis 28 will have 20 as their result. It’s only the rows for 29,30 and 31 which need a little work to produce)