Attempting to create a SAS library in Windows 64 SAS Studio University Edition. I get the following: 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 42 ; 43 libname libsas 'c:/users/larry/sasuniversityedition/myfolders'; NOTE: Library LIBSAS does not exist. 44 45 data libsas.europeancars; 46 set sashelp.cars; 47 where origin = "Europe"; 48 run; ERROR: Library LIBSAS does not exist. NOTE: The SAS System stopped processing this step because of errors. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 49 50 proc print data=libsas.europeancars; ERROR: File LIBSAS.EUROPEANCARS.DATA does not exist. 51 run; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 52 ; 53 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 63 ;
... View more