Hello, I have started learning SAS studio this year. I am trying to upload a very large csv file (just under 9000 rows) and am running into an error. Here is the code I used to upload the file:
/** Import the CSV file. **/
FILENAME CSV "</folders/myshortcuts/SASUniversityEdition/myfolders/sasuser.v94/LineGraph/transposed_all.csv>" TERMSTR=CRLF;
PROC IMPORT DATAFILE=CSV
OUT=all
DBMS=CSV
REPLACE;
RUN;
This is the same code I usually use to upload my csv files, however this time I get the following error message:
NOTE: Unable to open parameter catalog: SASUSER.PARMS.PARMS.SLIST in update mode. Temporary parameter values will be saved to
WORK.PARMS.PARMS.SLIST.
WARNING: Physical file does not exist,
/opt/sasinside/SASConfig/Lev1/SASApp/</folders/myshortcuts/SASUniversityEdition/myfolders/sasuser.v94/LineGraph/transposed_all.csv>.
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.17 seconds
cpu time 0.13 seconds
I double checked that the file directory is correct (I copied it directly from "Server Files and Folders" panel) so I'm not sure what else could be wrong. Any help would be greatly appreciated!!