Usage Note 18199: PROC IMPORT syntax for importing Stata, SPSS, and JMP files
Starting in SAS 9.1.3 SP3, PROC IMPORT has the ability to import Stata,
SPSS, and JMP files. SAS/ACCESS Interface to PC File Formats must be
licensed and installed. The syntax is below:
/* importing STATA files into SAS */
proc import out=work.test1
datafile='C:\stata_files\sfile1.dta'
dbms=DTA replace;
run;
/* importing SPSS files into SAS */
proc import out=work.test2
datafile='C:\spss_files\sfile1.sav'
dbms=SAV replace;
run;
/* importing JMP files into SAS */
proc import out=work.test3
datafile='C:\jmp_files\jfile1.jmp'
dbms=JMP replace;
run;
Operating System and Release Information
SAS System | SAS/ACCESS Interface to PC Files | Microsoft Windows XP Professional | 9.1 TS1M3 SP3 | |
Microsoft Windows 2000 Server | 9.1 TS1M3 SP3 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.1 TS1M3 SP3 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.1 TS1M3 SP3 | |
Microsoft Windows 2000 Advanced Server | 9.1 TS1M3 SP3 | |
Microsoft Windows 2000 Datacenter Server | 9.1 TS1M3 SP3 | |
Microsoft Windows Server 2003 Standard Edition | 9.1 TS1M3 SP3 | |
Microsoft Windows 2000 Professional | 9.1 TS1M3 SP3 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Date Modified: | 2009-04-07 14:49:55 |
Date Created: | 2006-08-01 16:47:57 |