c**********e 发帖数: 2007 | 1 If I want to copy it from folder FOLDER to folder WORK, I can do the
following.
data WORK.dataset1;
set FOLDER.dataset1;
run;
Another way is to use proc copy procedure.
proc copy in=Timeline out=work memtype=data;
select training_timeline;
run;
There are sure other ways, say proc datasets.
My primary concern is the efficiency, as my dataset1 is huge. Any thought?
Thanks. |
|