vote up 1 vote down star
1

What's the easiest way to remove last row from the text file using SQL Server Integration Services?

Thanks.

flag

1 Answer

vote up 1 vote down

Because SSIS is pipeline based, there's no good way to look ahead and know that a line is the last line.

However, depending on your actual goal, there are a number of ways to achieve this:

  • If the last row has some identifying information, it can simply be filtered out using the built-in filter component.
  • You can create a custom component which does buffer the pipeline a little and leaves off the last row.
  • You can add a row counter, output the file to a raw file and then read the raw file, excluding the last row using a filter
link|flag

Your Answer

Get an OpenID
or

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