Skip Line Count in Mapping Data Flow`
I am attempting to read a fixed-width text file in a mapping data flow.
I've set up my dataset with no delimiter and no schema. I've set up my source to use the dataset and skip the first 2 rows:
After parsing the incoming data (using substring, etc.) later in the data flow, I am writing the data out to a CSV file. The mapping in the Sink is present and complete and matches the parsed columns from earlier in the data flow. The CSV values are written correctly.
Unfortunately, the first two rows of the source file are also parsed and included. I don't want them in the output file.
Am I overlooking something here?