***********************************************************************
*                                                                     *
*  This program shows how a SAS system file for windoze can be        *
*     converted to a "transport" file than can be moved to other      *
*     operating systems (e.g. OS/2, unix, etc.).                      *
*                                                                     *
*                                                                     *
*  The first data/proc step combination writes the transport file.    *
*     The second reads the transport file and writes a SAS system     *
*     file.                                                           *
*                                                                     *
*  Delete the one you don;t need and adjust the libname statements.   *
*                                                                     *
***********************************************************************

options noname nonumber nocenter;

libname source 'c:\win95\desktop\world bank';
libname tranfile xport 'c:\win95\desktop\world bank\s601_f98.tpt';
proc copy in=source out=tranfile memtype=data;
run;

libname target 'c:\win95\desktop';
libname tranfile xport 'c:\win95\desktop\world bank\s601_f98.tpt';
proc copy in=tranfile out=target;
run;