ballardw wrote:
The SASUSER library should already exist in a SAS install, so I wouldn't try re-assigning it.
You can find the actual path to the sasuser library using:
Data _null_;
length path $ 200;
path= pathname(SASUSER,L);
put path=;
run;
put the value of the path in place of c:\myfiles in outfile='c:\myfiles\class'. I would recommend putting an extension on the file CLASS such as .txt.
I tried to find the path using your code but the log message had path = blank but managed to find it directly from the properties of the sasuser library. Now that I have the dataset in the sasuser library, how can I see the contents of the newly created mydata.csv file without directly going to the library. I tried doing, proc print data=sasuser.mydata; run; but get an error: ERROR: File SASUSER.MYDATA.DATA does not exist.
... View more