Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: BussinesDaysToCalendarDays

    Alter Function GetCalanderDaysFromBusinessDays (@BusinessDay int)

    Returns Date

    as

    Begin

    Declare @CalanderDays int

    Declare @FinalDate Date

    Set @CalanderDays = ((@BusinessDay/5)*7) + (@BusinessDay % 5)

    Set @FinalDate = DateAdd(Day, @CalanderDays, GetDate())

    Return @FinalDate

    End

  • RE: The SSIS Data Pump - Step 2 of the Stairway to Integration Services

    An Excellent article Andy. I am a beginner of SSIS and this article makes me everything so clear and easy. I am really waiting forward for next articles.

Viewing 2 posts - 1 through 2 (of 2 total)