hii want to use LinkedServer to get query from excel file, i create liked server by this code :exec sp_addlinkedserver 'test','Jet 4.0','Microsoft.Jet.OLEDB.4.0','d:\sss.xls',NULL,'Excel 5.0'GO
and when i run this query :select * from test...A
the following message has shown me :OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "test" returned message "Cannot start your application. The workgroup information file is missing or opened exclusively by another user.".Msg 7399, Level 16, State 1, Line 1The OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "test" reported an error. Authentication failed.Msg 7303, Level 16, State 1, Line 1Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "test".
where does my problem ?Note : my excel file contains Northwind.Customers Table that i exported it via Export Data.