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.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.