libname export '//SASCommon/jorquec';
proc copy inlib=jorquec outlib=export memtype=data;
select triggerpayg;
run;
/* or very simple */
data export.triggerpayg;
set jorquec.triggerpayg;
run;
libname export '//SASCommon/jorquec';
proc copy inlib=jorquec outlib=export memtype=data;
select triggerpayg;
run;
/* or very simple */
data export.triggerpayg;
set jorquec.triggerpayg;
run;
No problem. See it as "my job" here 😉
There are, as always with SAS, many more ways to create SAS tables in a given location. Proc sql, ODS output, to name just two.
For a single table, the data step is probably best (because of being simple), for a "bulk" operation proc copy is the tool of choice.
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!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.