Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using SQL Server with t-Sql I have the following code that checks to see if a date falls on a weekend and if it does, it will iterate until the day falls on a weekday

    Declare @ProDate as Date
    set @ProDate = '08/05/12'

    WHILE (DATEPART(DW, @ProDate) =  1 OR DATEPART(DW, @ProDate) =  7 )
    BEGIN

      set @ProDate =  DATEADD(day, 1, @ProDate)

    END

    select @ProDate

The code seems to work. Wondering if I missed anything or if there is a better way to handle this.

share|improve this question

2 Answers

up vote 0 down vote accepted

This code will work. It is almost identical to code that we use in a heavily used function.

The only suggestion that I might have is do you need to integrate a Holiday check? We have a Holiday table to store dates that need to be skipped as well.

share|improve this answer
It does not need to skip holidays. Thanks for your feedback! – Nate Pet Aug 2 '12 at 14:47
1  
@NatePet the only thing you need to verify is the dateFirst in your system and then you might have to adjust from there. Our code uses ((@@dateFirst + DatePart(dw,@ProDate)-2) % 7) + 1 to determine the day of week. – bluefeet Aug 2 '12 at 14:51

This code is dependent on the setting of DATEFIRST in your system.

I'd add a SET DATEFIRST 7 before the date checks

Alternately, this avoids the while loop

declare @df int = @@Datefirst       
set datefirst 1     
select 
    case when DATEPART(DW, @ProDate)>=6 then 
        DATEADD(d, 8-DATEPART(DW, @ProDate), @prodate)
    else @ProDate
    end    
set DATEFIRST @df
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.