hi all,
trying to import a csv file into pc sas.
Same code works with other people here but does not for me:
proc import datafile="\\xxx\yyy\zzz\aaa\bbb\x\y\z\temp.csv" dbms=dlm out=temp replace;
delimiter=","; getnames=yes; guessingrows=3500;
run;
errors:
NOTE: The infile '\\xxx\yyy\zzz\aaa\bbb\x\y\z\temp.csv is:
Filename=\\xxx\yyy\zzz\aaa\bbb\x\y\z\temp.csv,
RECFM=V,LRECL=32767,File Size (bytes)=38270,
NOTE: 0 records were read from the infile '\\xxx\yyy\zzz\aaa\bbb\x\y\z\temp.csv'
NOTE: The data set WORK.TEMP has 0 observations and 7 variables.
NOTE: DATA statement used (Total process time):
real time 0.02 seconds
cpu time 0.01 seconds
also tried :
proc import datafile="\\xxx\yyy\zzz\aaa\bbb\x\y\z\temp.csv" dbms=csv out=temp replace;
guessingrows=3500;
run;
exactly same error. I can import excel files .No problems....
Any hints please?
Thx
... View more