http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a000247654.htm Copying an Entire Library To copy an entire SAS library, simply specify an input data library and an output data library following the COPY statement. For example, the following statements copy all the SAS files in the SOURCE data library into the DEST data library: proc datasets library=source;
copy out=dest;
run;
... View more