The zipped file contains a text file and a SAS transport file created by proc cport. After unzipping the file, follow the instructions below to convert the transport file back to regular data sets. Run the following code on the destination computer. libname new 'newlocation'; proc cimport library=new infile='tranfile;' run; newlocation = directory you want the data set put in tranfile = transport file location Example: libname new '/hspb/home/smith307/examples/data/cport'; filename tranfile '/hspb/rhfs2012/ufiles/testdata/hud.xpt'; proc cimport library=new infile=tranfile; run;