hi, i'm using a proc compare. Code below:
proc compare
base=db1
compare=db2
printall;
title "title of compare";
run;
i got a code error, here is the log:
WARNING: Values of the following 24 variables compare unequal: variable names
WARNING: The data sets db1 and db2 contain unequal values.
i have manually checked some of the values, and it is not true that they are unequal, so i suppose there is a problem. Actually, i have detected a problem with variable names, some were lower case and some other were uppercase so i turned everything uppercase but it did not worked, the log goes on saying some variables are unequal. i have also checked the columns order, they are exactly equal. What could I check to solve the problem? thanks a lot
... View more