thendrickson
Programmer
I am attempting to create a linked server (Informix)
I use the following to create the linked server.
use master
exec sp_addlinkedserver @Server = 'traintcpTest',
@srvProduct = 'IBM Informix 3.82 32 bit',
@Provider='MSDASQL',
@provstr = 'Driver={IBM Informix 3.82 32 bit};Database=jlk_stage;UID=me;PWD=something;
PROTOCOL=onsotcp;HOSTNAME=\\devserver;
SERVICE=1527;SERVER=traintcp;'
Although I have changed the UID and PWD to a generic value for this post, the rest of the values are exactly what the values are for a user dsn that works properly
As soon as I click on the created linked server and click tables, I receive an
error 7399 OLE DB Provider 'MSDASQL' reported an error
Driver's SQLSetConnectAttr failed],
Driver's SQLSetConnectAttr failed],
Invalid SQLHostsfile format.]
etc. etc.
I am using SQL Server 2000.
I am doing a google search of course, but not finding the fix. from what I am finding, I seem to be "doing it right" so I suspect I am just plain missing the obvious.
Any ideas?
I use the following to create the linked server.
use master
exec sp_addlinkedserver @Server = 'traintcpTest',
@srvProduct = 'IBM Informix 3.82 32 bit',
@Provider='MSDASQL',
@provstr = 'Driver={IBM Informix 3.82 32 bit};Database=jlk_stage;UID=me;PWD=something;
PROTOCOL=onsotcp;HOSTNAME=\\devserver;
SERVICE=1527;SERVER=traintcp;'
Although I have changed the UID and PWD to a generic value for this post, the rest of the values are exactly what the values are for a user dsn that works properly
As soon as I click on the created linked server and click tables, I receive an
error 7399 OLE DB Provider 'MSDASQL' reported an error
Driver's SQLSetConnectAttr failed],
Driver's SQLSetConnectAttr failed],
Invalid SQLHostsfile format.]
etc. etc.
I am using SQL Server 2000.
I am doing a google search of course, but not finding the fix. from what I am finding, I seem to be "doing it right" so I suspect I am just plain missing the obvious.
Any ideas?