1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;42 ;43 %let path=/folders/myfolders/ecourse;44 libname orion "&path";NOTE: Libref ORION was successfully assigned as follows:Engine: V9Physical Name: /folders/myfolders/ecourse45 data work.cournty;46 length Country_Code $ 2 Country_Name $48;47 infile "&path/country.dat" dlm='!';48 input Country_Code $ Country_Name $;49 run;NOTE: The infile "/folders/myfolders/ecourse/country.dat" is:Filename=/folders/myfolders/ecourse/country.dat,Owner Name=sasdemo,Group Name=sas,Access Permission=-rw-rw-r--,Last Modified=19Dec2014:09:41:04,File Size (bytes)=19278NOTE: 238 records were read from the infile "/folders/myfolders/ecourse/country.dat".The minimum record length was 80.The maximum record length was 80.NOTE: The data set WORK.COURNTY has 238 observations and 2 variables.NOTE: DATA statement used (Total process time):real time 0.01 secondscpu time 0.03 seconds5051 proc print data=work.contry;ERROR: File WORK.CONTRY.DATA does not exist.52 run;NOTE: The SAS System stopped processing this step because of errors.NOTE: PROCEDURE PRINT used (Total process time):real time 0.00 secondscpu time 0.00 seconds53 ;54 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;64 ;