Hi Guys,
I'm currently converting our SSIS 2005 packages to 2012 and I'm finding an odd difference on the Data Flow Output when it imports a txt file to a table.
We have a pipe delimited file ( contains a totals on the bottom row).
CATNO|Title|Total Stk Avail|Stk on Order|Rank|QOH|Allocated|Reserved|BackOrd|WIP|Cleared|Held CATNUM000067|Fast and Furious|9804|0||9804|0|0|0|0|0|0 CATNUM000068|Frozen|0|0||0|0|0|0|0|0|0 CATNUM000029|Brave|0|0||0|0|0|0|0|0|0 CATNUM000029|Brave with Kinect|0|0||0|0|0|0|0|0|0 CATNUM000029|Big Hero|0|0||0|0|0|0|0|0|0 CATNUM000057|Transformers|27376|0||27376|0|0|0|0|0|0 CATNUM000013|James Bond|121|0||121|0|0|0|0|0|0 ,Total Available Stock,524259
And these are the settings for the flat file connection
In SSIS 2005, the total rows are being omitted automatically by the data flow. Basically only 7 rows are inserted whereas in SSIS 2012. 8 rows were inserted including the totals.
if we think about it, SSIS 2012 is correct since we just feed what's ever in the file.
But on the conversion and testing perspective, it's now harder as there's discrepancies between those 2 version.
I just like to check if there's any other discrepancies in terms on results/output between SSIS 2005 and SSIS 2012
Many thanks.