I created a System DSN called RunzLink. It tested successfully and I was able to create a linked table in MS Access with it. I created the following linked server in SQL Server:
I got the following error:
Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "RunzLink".
Any Ideas why it would work in MS Access but not SQL Server?
Code:
EXEC sp_addlinkedserver 'RunzLink', 'MySQLDatabase', 'MSDASQL', 'ikonnect.ikon.org' EXEC sp_addlinkedsrvlogin 'RunzLink', 'FALSE',NULL, 'UserName', 'PW'
Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "RunzLink".
Any Ideas why it would work in MS Access but not SQL Server?
Comment