Trying to create a linked server from an SQL Server to another SQL Server on another machine.
I'm Trying to create a linked server from an SQL Server to another SQL
Server on another machine.
Can anyone suggest some good reference material or tutorials?? So far
I'm only finding examples for a linked server to an ACCESS database.
Thanks in Advance!
Re: Trying to create a linked server from an SQL Server to another SQL Server on another machine.
gdev (paul.afamdi.okeke [at] gmail.com) writes:
> I'm Trying to create a linked server from an SQL Server to another SQL
> Server on another machine.
>
> Can anyone suggest some good reference material or tutorials?? So far
> I'm only finding examples for a linked server to an ACCESS database.
There are plenty of examples in the topic for sp_addlinkedserver.
In many cases, it is as simple as:
exec sp_addlinkedserver THATSERVEROVERHERE
exec sp_serverioption THATSERVEROVERTHERE, 'data access', true
Authentication does not always work though, and in this case
sp_addlinkedsrvlogin comes to the rescue.
--
Erland Sommarskog, SQL Server MVP, esquel [at] sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downlo ads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books .mspx