|
|
How do I open the SPSS portable or SAS transport files?SPSS Portable Files. SPSS portable system files are in each zipped dataset file. The SPSS portable file is named with the extension .POR.
Select Open Select Data Change file type to SPSS Portable (*.por) Locate the portable file on the hard drive Click open to launch the import command
save outfile = 'c:\my documents\filename.sav'. execute.
save outfile = '/path/filename.sys' finish
libname new filename; proc copy in=trans out=new; run;
libname trans xport '/your path/filename.tpt'; proc copy in=trans out=data memtype=data; select filename; run;
Return to the Help/FAQ PageorGo to the Next Question
|