Forum Replies Created

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

  • RE: SSIS Exporting to Multiple Excel Files

    Hi Byron,
                   You can do it by using For each loop container.Basically divide the whole work into two parts.First Generate the excelsheet and...

  • RE: select query

    select max(myDate) from

    ( select field_1 myDate from myTable

    union all

    select field_2 myDate from myTable

    union all

    select field_3 myDate from myTable) as Temp

    It will return the maximum...

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