Search found 1 match

by StephenH
Thu Oct 27, 2005 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to skip the trailer record
Replies: 25
Views: 12934

You can strip out the last part of the file using dd on the unix command line, something like dd if=<input_file> of=<output_file> bs=1 count=<expected_length> Assuming there are no delimiters or line terminators, I calculate the trailer length to be 1000 bytes, so expected_length would be the length...