Top "Openrowset" questions

OPENROWSET is a T-SQL function that can be used in Microsoft SQL Server to read remote data from an OLE DB data source.

The OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)"

I'm trying to run the following statement but am receiving the error messages just below. I have researched answers to …

sql visual-studio-2013 openrowset
INSERT INTO from two different server database

I am trying to copy the data of testdabse.invoice table to basecampdev.invoice table. testdabse is a local database …

sql sql-server openrowset
Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "(null)"

Having an interesting issue. I'm reading from an excel file on a server via an OpenRowset in Sql2005. I've run …

sql-server-2005 openrowset msdasql
Cannot create an instance of OLE DB provider Microsoft.Jet.OLEDB.4.0 for linked server null

I am trying to export from my Table data into Excel through T-SQL query. After little research I came up …

sql sql-server export-to-excel openrowset
Using a Variable in OPENROWSET Query

I'm having trouble with this query: SELECT * FROM OPENROWSET( 'SQLNCLI', 'DRIVER={SQL Server};', 'EXEC dbo.sProc1 @ID = ' + @id ) …

sql sql-server sql-server-2008 openrowset
'Microsoft.ACE.OLEDB.12.0' 64x Sql Server and 86x Office?

The error: OLE DB provider 'Microsoft.ACE.OLEDB.12.0' cannot be used for distributed queries because the provider is configured …

64-bit oledb 32-bit openrowset
How to resolve "Could not find installable ISAM." error for OLE DB provider "Microsoft.ACE.OLEDB.12.0"

I am trying to import data from Excel 2007 (.xlsx) files into SQL Server 2008 using a T-SQL OpenRowset() command with the "…

tsql excel-2007 oledb openrowset isam
SQL Server export to Excel with OPENROWSET

I am successfully exporting to excel with the following statement: insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=C:\…

sql sql-server excel export-to-excel openrowset
SQL SELECT * FROM OPENROWSET with Variable

I am trying to pass a variable into a SELECT statement in OPENROWSET but I keep getting an error DECLARE @…

sql variables sql-server-2008-r2 openrowset
SQL Server: Cannot initialize the data source object of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)"

I am trying to run the following query: SELECT * FROM OPENROWSET('Microsoft.ACE.OLEDB.12.0', 'Excel 12.0;Database=C:\Somefile.xlsx', …

sql-server excel openrowset