• sattar419 10789 (5/29/2014)


    Hi all,

    I am trying to use Aggregator transformation to do the sum on one column based on group by on another column, but when i do it i am getting on these two columns in the output records... I have 23 other columns that i want as output column. How to achieve this in ssis.

    Below is what i have in my package.

    Source which has 25 columns

    Aggregator ( group by on column1 and sum on column2)

    output ( I need all 25 columns) ?

    I can't speak for SSIS but here's how I might do it in T-SQL... that is, if it made sense to do so. The "aggregator" will give you the sum of all Column2s grouped by Column1 and will be repeated for each unique value for Column1 (as in "group").

    SELECT Column1

    ,Aggregator = SUM(Column2) OVER (PARTITION BY Column1)

    ,Column2

    ,Column3

    ,Column4

    ,Column5

    ,Column6

    ,Column7

    ,Column8

    ,Column9

    ,Column10

    ,Column11

    ,Column12

    ,Column13

    ,Column14

    ,Column15

    ,Column16

    ,Column17

    ,Column18

    ,Column19

    ,Column20

    ,Column21

    ,Column22

    ,Column23

    ,Column24

    ,Column25

    FROM dbo.YourTable

    --Jeff Moden


    RBAR is pronounced "ree-bar" and is a "Modenism" for Row-By-Agonizing-Row.
    First step towards the paradigm shift of writing Set Based code:
    ________Stop thinking about what you want to do to a ROW... think, instead, of what you want to do to a COLUMN.

    Change is inevitable... Change for the better is not.


    Helpful Links:
    How to post code problems
    How to Post Performance Problems
    Create a Tally Function (fnTally)