In this post, they use proc datasets with some success:
proc datasets library = accdb nolist;
append base = myaccdb.class
data = sashelp.class;
force;
run;
quit;
In this post, they use proc datasets with some success:
proc datasets library = accdb nolist;
append base = myaccdb.class
data = sashelp.class;
force;
run;
quit;
Hi Gil,
if you want to append data sets , first you have to remove Primary key constraint, as you know it wouldn't allow duplicate values.
or
Proc append will run without any error but in log you will get warning . Like " Add/Update failed for data set because data value(s) do not comply with integrity constraint primary key, number of observations rejected."
Thanks,
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.