Here is the scenario.
I have to select 1 row from source and then i have to pass that row to 5 dataflow ( each data flow destination has different structure ). So that, those 5 dataflow will right 5 rows into one target file. Next i will pass the second row from source to those data flows to write another 5 rows into to target file. This will continue for all the rows in my source.
Note: I want to use a query for source like select col1,col2,col3,col4,rw from source where rw= @variable
This variable needs to be incremented to fetch each row one by one. But I am not sure how to do this and achieve my requirement.
Appreciate your help on this.