Copy the desired data sets from the WORK library to a permanent library. PROC DATASETS copies two data sets from the WORK library to the PRINTLIB library in order to limit the number of data sets available to the example.


proc datasets library=proclib memtype=data nolist;
   copy out=printlib;
      select delay internat;
run;