Hello everyone! I have a SAS code that used to work on PC. However, I now have to run it in Linux and the code to access database is not working anymore. Before: PROC IMPORT DBMS=ACCESSCS DATATABLE='2014_Platform' OUT=WORK.gwei14 REPLACE; DATABASE= 'C:\Users\..\2014_Platform_Inventory.accdb'; RUN; Now: libname offshr access "/2014_Platform_Inventory.accdb" ; run; I got this error: ERROR: The ACCESS engine cannot be found. ERROR: Error in the LIBNAME statement. Please help me how to access a database in Linux 9.4! Thank you so much!
... View more