Hey guys, I just start learning SAS recently. And I am having some trouble creating a library on SAS. My code look like this (really simple please don't laugh~) LIBNAME CENTER "."; DATA CENTER; INPUT ID; DATALINES; 1 2 3 4 5 ; RUN; PROC PRINT; RUN; After running, it says that "ERROR: User does not have appropriate authorization level for library CENTER." How can I solve this. Is this because I am using the university version?
... View more