Groups | Blog | Home
all groups > sql server programming > september 2004 >

sql server programming : Linked server to Paradox database


mchenna2000 NO[at]SPAM yahoo.com
9/2/2004 9:30:23 PM
I am using SQL Server 2000 and trying to add linked server to a
paradox server. First I have created DSN and used this dsn name in the
linked server connection. It failed. Then I tried creating the linked
server using the server name instead of dsn. It failed. I used
OpenRowSet and SQLOLEDB provider and it worked. I need to be able to
connect through linked server for our application. Please help me on
how to create linked server.
Thanks in advance,
oj
9/3/2004 12:19:35 AM
try:

EXEC sp_addlinkedserver 'pdox',
'',
'MSDASQL',
'your_system_dsn'

EXEC sp_addlinkedsrvlogin 'pdox',
'false',
null,
'admin',
''



[quoted text, click to view]

mchenna2000 NO[at]SPAM yahoo.com
9/7/2004 4:40:05 PM
Thanks a bunch. Actually using the DSN in the linked server configuration worked.

[quoted text, click to view]
AddThis Social Bookmark Button