proc sql;
drop table pcn_rep.treaty;
drop table pcn_rep.nontreaty;
drop table pcn_rep.physician_list;
drop table pcn_rep.treaty_cut;
drop table pcn_rep.non_treaty_cut;
quit;
data pcn_rep.treaty;
set treaty;
run;
data pcn_rep.nontreaty;
set nontreaty;
run;
data pcn_rep.physician_list;
set physician_list;
run;
data pcn_rep.treaty_cut;
set treaty_cut;
run;
data pcn_rep.non_treaty_cut;
set non_treaty_cut;
run;