I have two SAS data sets - one of them has about 600,000 more observations than the other. All of the observations from SAS data set A are also in SAS data Set B, B just has more observations in addition. How can I abstract only those ~600,000 observations that are different? I already tried PROC COMPARE with no luck, since the new data aren't in any particualr order. for example Set A X Y Apples 1 Oranges 3 Pears 3 Set B X Y Apples 1 Watermellon 1 Oranges 3 Pears 3 Banana 2 in this case I want my output to be X Y Watermellon 1 Banana 2 Thoughts?
... View more