Hi, I am trying import a .csv file using proc import in SAS Studio but getting an error message. This is the code i am using: proc import datafile='/home/kaushik/Documents/Kaushik/Data Science/Jigsaw/Credit Card - SAS Functions.csv' out= Credit_card dbms= csv; run; Following is the error message: 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 72 73 proc import datafile='/home/kaushik/Documents/Kaushik/Data Science/Jigsaw/Credit Card - SAS Functions.csv' 74 out= Credit_card 75 dbms= csv; 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. ERROR: The path /home/kaushik/Documents/Kaushik/Data Science/Jigsaw/Credit Card - SAS Functions.csv is not in the list of accessible paths when SAS is in the lockdown state. 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 1.71 seconds cpu time 0.31 seconds 77 78 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 91
... View more