Dear Experts,
I have got a task which I am not able to solve please help me to get the result:
There are 10 or so datasets availble in SASAPP named Jan, Feb,...Sept, Dec. I have to upload all the datasets into lasr and append them so please help me to write that program whick will load the data into LASR.
for a single dataset is use SASIOLA, SAS LASR Engine and able to load a dataset quite easily but not multiple so please help.
Thnx
Rahul
I hope next link and the inner links will help you:
The easiest way to do this is to append all ten tables first into a temporary table, then load the one temporary table into LASR by running the following code on your SAS VA app server (default LIBREF is LASRLIB - you may need to check this):
data load_table;
set jan feb mar apr........dec;
run;
data LASRLIB.load_table;
set load_table;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.