“Data source name not found” when adding linked server

冷暖自知 提交于 2019-12-12 02:25:50

问题


I am trying to add a linked server to a sql server 2012 database using ssms 2012.

the linked server is pervasive sql. here's how i am trying to do it:

EXEC sp_addlinkedserver 
   @server = 'kslap208', 
   @provider = 'MSDASQL', 
   @datasrc = 'C003',
   @srvproduct = 'Pervasive'
GO

however when i test the connection i am getting this error msg:

what am i doing wrong? how can i link to an instance of a pervasive sql database?

here is some additional information regarding the DSN to which I am trying to connect:

来源:https://stackoverflow.com/questions/14744012/data-source-name-not-found-when-adding-linked-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!