Hello,
I have a situation where after eliminating dups from the input file using SUM FIELDS = NONE the SORT leaves the sorted file with one unique occurence of the duplicate record. In my case I do not want to see the record left behind in my sorted file. How can I eliminate that..?
For example
Input file contains
XXXXXX
XXXXXX
XXXXXX
YYYYYY
ZZZZZZZ
My ouput sorted file should be as below. I don't want to see any XXXXXX records in the sorted file.
YYYYYY
ZZZZZZZ
Could you please help. Thanks.