Hey there,
I am trying to import some data with in Excel to SQL. I am a novice to SQL. Using Microsoft SQL Server Management Studio.
Running the code below:
SELECT *
FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
'Data Source="C:\KPI\test.xls";User ID=Admin;Password=;Extended
properties=Excel 5.0')...['KPI$']
Gives the following error :
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "Could not find installable ISAM.".
Msg 7303, Level 16, State 1, Line 1
Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)".
Please can somebody help, thanks!
I am trying to import some data with in Excel to SQL. I am a novice to SQL. Using Microsoft SQL Server Management Studio.
Running the code below:
SELECT *
FROM OpenDataSource( 'Microsoft.Jet.OLEDB.4.0',
'Data Source="C:\KPI\test.xls";User ID=Admin;Password=;Extended
properties=Excel 5.0')...['KPI$']
Gives the following error :
OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)" returned message "Could not find installable ISAM.".
Msg 7303, Level 16, State 1, Line 1
Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "(null)".
Please can somebody help, thanks!