This document tells how to convert members of SAS libraries from one version of SAS to another (such as from SAS 6.11 to SAS 8). The same procedure will also convert members of SAS libraries from one platform to another (such as from Unix to MS Windows).
The basic idea is to create a SAS Transport File, which can be read by any version of SAS on any platform. The SAS procedure proc copy is used to both create the transport file on the source SAS version/platform, and to read the transport file into the destination SAS version/platform. In this document, we will illustrate (1) the conversion of an entire SAS version 6.11 library to version 8, and (2) the conversion of a subset of the members in a SAS version 6.11 library to version 8. Interested readers can find more information about proc copy at http://www.math.wpi.edu/saspdf/common/mainpdf.htm: click on "SAS Procedures Guide" and then "The COPY Procedure".
/math/mathlab/bin/sasetupaMore information on setting up SAS 8 (particularly setting up (1) printing and (2) SAS/EIS to run macros), and a tutorial on its use are found at http://www.math.wpi.edu/Course_Materials/SAS/tutorial00.html
Step 1: Create the Transport File
libname translib xport 'stordir/temp.xpt'; proc copy in=mylib out=translib; run;
The data library mylib has now been copied to the transport file temp.xpt found in the directory stordir.
Step 2: Unpack the Transport File
libname misc 'newdir'; libname translib xport 'stordir/temp.xpt'; proc copy in=translib out=misc; run;
A Few Other Points
For instance, suppose you want to select member1 and member2 from the SAS 6.11 library mylib and convert them to SAS 8 format. Then from the SAS 6.11 Program Editor Window, submit the following commands:
libname translib xport 'stordir/temp.xpt'; proc copy in=mylib out=translib; select member1 member2; run;To convert these members to SAS 8 format, submit the same commands as above from the SAS 8 Program Editor Window:
libname misc 'newdir'; libname translib xport 'stordir/temp.xpt'; proc copy in=translib out=misc; run;