Maybe you should define your delimiter,since your delimiter doesn't look like comma.
proc import datafile='myfile.csv' dbms=csv
out=work.procimportexcel replace;
delimiter=' ';
getnames=yes;
run;
... View more
Correction I don't know what I was thinking but 656 is not large enough, it assumes the string has at least 50 bytes between commas. Oh well, I thinl 16384 is the max.
... View more