I am trying to import sample excel file . Here is the code .I use Office 2003 (ie 11) into SQL 2000 SP3a .create table Staging ( excelRow int identity(1,1) primary key, s varchar(100) ) insert into Staging select F1 from OpenRowSet( 'Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=D:\ipadd.xls;HDR=NO;IMEX=1' ,Sheet1$ ) go
We get the following errors . Server: Msg 7399, Level 16, State 1, Line 7OLE DB provider 'Microsoft.Jet.OLEDB.4.0' reported an error. The provider did not give any information about the error.OLE DB error trace [OLE/DB Provider 'Microsoft.Jet.OLEDB.4.0' IDBInitialize::Initialize returned 0x80004005: The provider did not give any information about the error.].What could be the issue .