|
I do a proc sort nodupkey like below to get rid of exact dups:
Proc sort nodupkey data= CombinedFlags out=ppro.CombinedFlagsnodup;
by field1 field 2 ....... field300;
run;
Since I need to get rid of exact duplicate records,I have to specify each field in the record as that is what I need : to delete dups records with equal values in the same columns....
Is there any way in syntax in order I could do it without specifying hundreds of fields?
Thank you in advance!
Irin
|