Hi,
I'm trying to use the aggregate transformation to sum my orders table unit price and quantity with a grouping of state but i can't see how to add the sub grouping. My order table has the following fields of interest Unit Price (Money), Quantity (Integer) and State (Varchar)
When i run the aggregate i want the output to be grouped by state
Hope the values are correct
Martin
Add the aggregate to your data flow, and connect an input. Open the properties and check the Unit Price, Quantity, and State on the available input columns. In the grid at the bottom, make sure the State has the Operation set to "Group By", and Operation to "Sum" for the Unit Price and Quantity columns. That should do it.|||In the operation selection for state i can't select "Group By" it only has "Count". Any ideas?|||
Martin Perkins wrote:
In the operation selection for state i can't select "Group By" it only has "Count". Any ideas?
That's strange. What's the data type of the state column? Have you installed service pack 1 at least?|||
The State property is Nvarchar(max) Just installing service pack 2 for SQL Server 2005
|||It was the length of the state column. If i convert the column from Nvarchar(max) to Nvarchar(20) i can then group by.
Thanks for help
Martin
|||SSIS treats NVARCHAR(MAX) as BLOB type, and does not support grouping by blobs. You need to convert it to fixed-lenght type, like NVARCHAR(2).
You can do it either
1) at the source - NVARCHAR(MAX) is very inefficient method of storing 2-character data, if you can change the source, I suggest doing it
2) case to fixed-lenght type in the SQL query
3) use SSIS to create another column of fixed lenght (I'm not sure if type convertion transform does it, if not then try derived column transform)
Hope this help,
Michael.
No comments:
Post a Comment