I am trying to run below code but failing with error 'ERROR: DBMS type ACCESS not valid for import.' Not sure what is the issue.
LIBNAME db 'C:\Extra';
PROC IMPORT DBMS=ACCESS
OUT=WORK.Finished_IP
DATATABLE='IP Input Data'
REPLACE;
DATABASE= "db.Finished data.accdb";
USEDATE=YES;
SCANTIME=NO;
DBSASLABEL=NONE;
RUN;
DATABASEspecification is wrong (or at least something I've not seen before done that way); but that's not the error you're getting. Do you haveACCESS to PC FILESlicensed? - Joe