Today is 31 Mar 2021.
In a SSIS expression - DATEPART( "dw", GETDATE() )
- returns 3
Where as in SQL - SELECT DATEPART(dw,GETDATE())
- returns 4
I know that I can use SET DATEFIRST 1;
to set the start day as Monday and when the above SQL code is rerun it will show 3. Is there any way to control the start day in SSIS?