Hi AllI am using SQL Server Database 2008 and I want to create a linked server and link it to Microsoft Access database and the access database file name is Nwind.mdb.I issue the command in the SQL server Management Studio like thisexecute sp_addlinkedserver 'North','OLE DB Provider for Jet','Microsoft.Jet.OLEDB.4.0','d:\sql_server\Nwind.mdb'
and receive the message Command(s) completed successfully.
now i want to query the customers table in access database and issue the following command select * from North...customers
when I click execute button then I receive the following message.Msg 7308, Level 16, State 1, Line 1OLE DB provider 'Microsoft.Jet.OLEDB.4.0' cannot be used for distributed queries because the provider is configured to run in single-threaded apartment mode.
Please help me out