1. proc import question for CSV file
2. proc import .csv file question!
Hello, folks, I use "proc import " to import the .csv file to SAS. I was lazy to find the longest width for each categorical variables since the raw file is too big (encounter data). And SAS maybe only read the first 12? variables to set the default variable length to this categorical variable and that caused the truncation somehow. So, I came here to ask if there is a good method to read large .CSV files without truncation problems. I appreciate your help very much!
4. GUESSINGCOLUMNS: PROC IMPORT/IMPORT Wizard CSV/TAB/DLM
5. Problem with importing excel file using PROC IMPORT.
6. proc import interfere with proc gplot?
Hi there,
The following simple code, get "ERROR: Read Access Violation" message.
Note the proc import has nothing to do with the gplot step:
proc import datafile="c:\temp\test.csv" out=xx
dbms=csv replace;
run;
proc gplot data=sashelp.class;
plot weight*height;
run;
If I add 'quit' statement after gplot, message disappear. When no proc
import step present, no quit statement is necessary.
Any clue why is that?
Thanks
Ya
=20 =20 Is there a way to import multiple excel files from a single folder, as one can do with "*" in an infile statement? Something like: =20 PROC IMPORT=20 DATAFILE=3D 'c:\datafile\*.xls' OUT =3D a1 DBMS=3Dexcel ;=20 run; quit; =20 (which, of course, doesn't work) =20 Thanks for any suggestions, Dave Scanned by GenNET AV out