Hi,
SQLExpress on Windows XP SP2, authentification mode Windows
I trie to link a Visual FoxPro database with OLEDB provider (yet installed)
That query :
EXEC master.dbo.sp_addlinkedserver
@server = N'MyLinkedServer',
@srvproduct=N'Visual FoxPro 9',
@provider=N'VFPOLEDB',
@datasrc=N'"C:\MyPath\MyDirectory\"',
@provstr=N'VFPOLEDB.1'
works fine (no error)
but that one : select * from MyLinkedServer...MyTable return following error
message:
Cannot create an instance of OLE DB provider VFPOLEDB for linked server
"MyLinkedServer".
What's wrong ?
|