a********t 发帖数: 1810 | 1 我use SAS import wizard, FILE-IMPORT,然后按照它的一步步走,可最后RUN后,总是出错
Error: File _IMEX_.Claimsdata.DATA does not exit.
Error: import is unsuccessful
为什么? 还有我创建了个永旧数据库在LIBRARY下,可每次关了SAS,重打开总是没有 | s*******1 发帖数: 146 | 2 sas only recognizes the old version of some software. Maybe your datebase
software is very new. Try save it in the old version, eg. access 2003. | a********t 发帖数: 1810 | 3 my SAS is 9.1 version, and Access is 2003? I sthis problem? | s*******1 发帖数: 146 | 4 Export the data from Access to DBASE IV, then import the dbf data into SAS | C******y 发帖数: 2007 | 5 PROC IMPORT OUT= data1
DATATABLE= "xxx"
DBMS=ACCESS2000 REPLACE;
DATABASE="c:\1\2.mdb";
RUN;
The code may vary depending on version of access and sas
出错
【在 a********t 的大作中提到】 : 我use SAS import wizard, FILE-IMPORT,然后按照它的一步步走,可最后RUN后,总是出错 : Error: File _IMEX_.Claimsdata.DATA does not exit. : Error: import is unsuccessful : 为什么? 还有我创建了个永旧数据库在LIBRARY下,可每次关了SAS,重打开总是没有
| a********t 发帖数: 1810 | 6 can you tell me what is your data set name in SAS? DATATABLE= "xxx" ? |
|