Hello,
You can try this piece of code.
data x(index = (trk = (a b)));
input a b c;
cards;
1 2 3
1 2 3
3 4 5
5 6 7
5 6 7
;
run;
proc sql ;
create table test(a num unique,b num unique,c num);
describe table test;
quit;
proc append base=test data=x ;
run;
It will work.
Good Luck.
Suchismita.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.