I have an SSIS 2008 package that queries a database, concatenates various data elements into pipe-delimited rows, and then outputs the results to a flat file. This all works just fine.

However, the last row of the file has to be this: EOF|NNNNN| where NNNNN is the number of data rows present in the file.

I would just output @@ROWCOUNT, however the queries all have a UNION ALL in them, and so @@ROWCOUNT returns an incorrect result.

Obviously I could shell out to the CLR with a script task, open the text file, and count the rows that way, but I'd rather avoid the performance hit, and keeping it all in the SSIS data flow is cleaner, and more easily understood.

Suggestions? I feel like I'm missing something obvious. TIA!

link|improve this question
feedback

1 Answer

There is a Row Count Task, you should be able to use that before you send the unioned rows to the destination.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.