Hi all,I've created a test enviroment for my test case. (Installed Windows 7 x64 and MS SQL Server 2012 x64 on a virtual machine)I want to query a .DBF file from SQL Server. I use the OPENROWSET function. Installed the "2007 Office System Driver: Data Connectivity Components" and run the following query:sp_configure 'show advanced options', 1reconfigure GOsp_configure 'Ad Hoc Distributed Queries', 1 reconfigureGOEXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0' , N'AllowInProcess' , 1;EXEC master.dbo.sp_MSset_oledb_prop N'Microsoft.ACE.OLEDB.12.0' , N'DynamicParameters' , 1;SELECT *FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0','dBASE IV;Database=C:\Users\Luuk\Desktop\REL_INFO.DBF','SELECT * FROM REL_INFO.DBF')
Result: "OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" returned message "Unspecified error".Msg 7303, Level 16, State 1, Line 1Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)"."Read a lot about this problem, but can't figure it out.Can anybody help me?Thanks!