I need to split file base on first row. Example data:
101,row2,row3
103,row2,row3
102,row2,row3
101,row2,row3
So these will be split into 3 files (one file for 101 rows one for 102 and one for 103) . Output can be XML or flat file
How can I do this?
You will need to create a custom pipeline for that function. You can reference this post which references a couple blog posts in the answer, it will tell you how to implement it, but your implementation will differ some.