How do I registry the OLE provider for a Exchange 2003 database. -
04-08-2005
, 11:14 PM
I receive the following error when I try to query an Exchange database.
Server: Msg 7403, Level 16, State 1, Line 1
Could not locate registry entry for OLE DB provider 'exoledb.DataSource.1'.
OLE DB error trace [Non-interface error: Provider not registered.].
How do I registry the OLE provider for a Exchange 2003 database.
thanks
Dave
Below is the code:
EXEC sp_addlinkedserver '1exch',
'Exchange OLE DB provider',
'exoledb.DataSource.1',
'file:\\.\backofficestorage\localhost\public folders'
Select Convert(nvarchar(200),"urn:schemas:contacts:sn") LastName
FROM OpenQuery([1exch],'SELECT "urn:schemas:contacts:sn"
FROM SCOPE(".\contacts")') |