Hello,
I have to Load a table with aggregate data, I can do it using Aggragate transformation, but other the "GROUP BY" I need to make a filter on input records with "WHERE" condition.
In TSQL it should be:
SELECT col1, SUM(col2) FROM T
GROUP BY col1
WHERE col3 = value.
But in SSIS ?
How can I do it?
Thank