|
楼主

楼主 |
发表于 2013-5-23 05:52:42
|
只看该作者
need help for proc cimport
libname dp 'D:\Documents and Settings\xyz\Desktop';
data dp.class; set sashelp.class;run;
libname aa 'D:\Documents and Settings\xyz\Desktop\abc';
filename cc 'D:\Documents and Settings\xyz\Desktop\class.sas7bat';
proc cimport library=aa infile=cc;
run;
-----------------------------------------------------------
I am learning PROC CIMPORT. As an example, I run the code above, but got error:
ERROR: Physical file does not exist, D:\Documents and Settings\tianm\Desktop\class.sas7bat.
So anyone can explain what is the PROC CIMPORT purpose, and how to correct the code above?
thx!!! |
|