Hi, Am having a set files like master_1,master_2,master_3.........,master_n in access database.Can we import them all at a time something like master%.
Thanks in advance!!!!
Using the LIBNAME access to your database
LIBNAME mdb ACCESS "pathtodatabase\databasename.accdb" ; or mdb as appropriate
Data Mysasdatsset;
set mdb.master: ;
run;
might do it
Do you want to import them into the same dataset or individual sets?
Into same dataset
Using the LIBNAME access to your database
LIBNAME mdb ACCESS "pathtodatabase\databasename.accdb" ; or mdb as appropriate
Data Mysasdatsset;
set mdb.master: ;
run;
might do it
It worked Thank you!!!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.