views:

25

answers:

1

I have a text file with 5 columns and a variable amount of rows. What would be the easiest way to grab the first row of the text file and set 5 different variables in SSIS to the values of the 5 columns in the first row?

+2  A: 
  • Define your five variables in the package, and one more for row_count.
  • Setup a Flat File Source.
  • Use Row Count component to count rows.
  • Use Conditional Split on row_count == 1.
  • Use Script Component to capture row data into variables.
Damir Sudarevic
Worked like a charm. Thank you
Cory

related questions