I have tried this method to connect to an excel spreadsheet:sp_addlinkedserver N'Excel', N'Jet 4.0', N'Microsoft.Jet.OLEDB.4.0', N'c:\myspreadsheet.xls', NULL, N'Excel 5.0'GOsp_addlinkedsrvlogin N'Excel', false, sa, N'ADMIN', NULLGOSELECT *FROM EXCEL...sheet1GO
And get this error:Server: Msg 7314, Level 16, State 1, Line 1OLE DB provider 'EXCEL' does not contain table 'sheet1'. The table either does not exist or the current user does not have permissions on that table.OLE DB error trace [Non-interface error: OLE DB provider does not contain the table: ProviderName='EXCEL', TableName='sheet1'].Can anyone point me to where I am going wrong please?Thanks