I see similar topics already posted but none gives me an answer. I am trying to import data from an Access database, not Excel.
Here is my query:
SELECT *
FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0',
'Driver={Microsoft Access Driver (*.mdb)};
Database=C:\Users\td\Dropbox\Utilization Reports\DB\201606\IMA_0216_v2k.mdb',
'select * from BackupLabels')
And here is the error message I get:
OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" returned message "Could not find installable ISAM.".
I had the same error when linking to an Excel file. I used Regsvr32.exe
to associate the .dll
file using this site (https://support.microsoft.com/en-us/kb/209805) and that worked, but when I link to an Access database it doesn't. I tried to find a .dll
file for Access but couldn't.
Does anyone have any idea? Thanks.