Once you double-click the .sas7bdat in EG, you will get a temprorary library assigned. Do refresh in the libraries tree, then right-click the new library, and select Properties. There you will find the complete physical path. With this you can then code a libname statement in Base SAS to access the file like any other SAS dataset. Example: file is found in Files/folder and is named xxx .sas7bdat. After double-clicking, a new library (eg EC00001) is found. Its path shows "/home/username/folder". (Once you know that the physical path to Files is actually /home/username, you can omit this part) Code: libname newlib "/home/username/folder"; proc print data=newlib.xxx; run;
... View more