I am simply trying to import a datafile into SAS. Any file I previously used will load just fine. However, when I try a recent file (saved as csv file in myfolders) I receive an error message. Can anyone make a suggestion? Following is the entire log: OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 61 62 /* Generated Code (IMPORT) */ 63 /* Source File: sugglow.csv */ 64 /* Source Path: /folders/myfolders */ 65 /* Code generated on: 4/4/17, 1:01 PM */ 66 67 %web_drop_table(WORK.IMPORT); 68 69 70 FILENAME REFFILE '/folders/myfolders/sugglow.csv'; 71 72 PROC IMPORT DATAFILE=REFFILE 73 DBMS=CSV 74 OUT=WORK.IMPORT; 75 GETNAMES=YES; 76 RUN; NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to WORK.PARMS.PARMS.SLIST. Unable to sample external file, no data in first 5 records. ERROR: Import unsuccessful. See SAS Log for details. NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE IMPORT used (Total process time): real time 0.05 seconds cpu time 0.04 seconds 77 78 PROC CONTENTS DATA=WORK.IMPORT; RUN; ERROR: File WORK.IMPORT.DATA does not exist. NOTE: Statements not processed because of errors noted above. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: The SAS System stopped processing this step because of errors. 79 80 81 %web_open_table(WORK.IMPORT); 82 83 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
... View more