Hi ,
I have a dataset list in my folder
"/usr/apps/sasdata/product/data/list " and how to i move the file to SAS folders
can anyone pls help
Assign a library reference to the first location.
Use proc datasets to move files over.
libname input '/usr/apps/sasdata/product/data/list";
libname output '/chennupriya';
proc datasets library=output nolist nodetails;
copy in=input out=output;
run;quit;
HI,
It helps then i should know the correct path for the output
Thanks
I don't understand.
The output is where you want it to go, so you put the destination.
Please explain your problem thoroughly if you need more help.
I am referring to some folder in SAS folders for example like in the image
I am referring to some folder in SAS folders for example like in the image
When registering tables in metadata with the SMC, you can specify the metadata folder.
Sry bymistake it got posted two times
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.