Hi there,
How do we read a flat file that has multiple types, but the data is specified on each row, not on the next rows? I was trying to follow the example from http://blog.cloveretl.com/processing-heterogeneous-data-with-complexdatareader, but that example uses a “batch” row that tells what kind of data is coming on the next rows. My data looks like this:
H0001This is the header information12345etcetc
S0000001This is the batch start 11111
D0000001001The detail record 99Jeaux Bleaux 3297etcetc
D0000001002Next detail record98Jahnh Deaux 4588etc
F0000001This is the batch finish6432etc
S0000002This is the next batch start23422
D0000002001The detail record 55Inigo Montoya2237etcetc
...
Thanks so much for your help!
Jus