hello all,
I would use "PROC DOWNLOAD" to download all datasets present in a libname, but can not set the correct syntax.
Please help me! :smileyconfused:
es.
PROC DOWNLOAD DATA =PLUTO.T01 OUT =PIPPO.T01;
RUN;
Download all datasets in the libname "PLUTO" in to libename "PIPPO"
Thank's!!!
Try the INLIB and OUTLIB options.
LIBNAME PIPPO "\\TEMP";
RSUBMIT;
LIBNAME PLUTO "/sasdatatmp_6/SAS_workC99F0086E0B8_ussasx601";
proc download inlib=PLUTO outlib=PIPPO;
run;
endrsubmit;
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.