To use the library you created you need to use a two-level name (libref.dataset). If you omit the libref, then by default the data set you create goes in a temporary library called work. To use library mydata, your code should look something like this: options pagesize=60 pageno=1 linesize=80 nodate; libname mydata '/folders/myfolders/sasuser.v94'; proc contents data= mydata._all_; run; data mydata.tour; input Country $ Nights Aircost Landcost Vendor $; datalines; France 8 793 575 Major Spain 10 805 510 Hispania India 10 . 489 Royal Peru 7 722 590 Mundial ; proc print data=mydata.tour; TITLE 'Data Set MYLIB.INTERNATIONALTOURs '; run;
... View more