Click here to Skip to main content
15,881,803 members
Articles / Database Development / SQL Server
Tip/Trick

SQL Server - How to create LinkedServer using SMO

Rate me:
Please Sign up or sign in to vote.
4.94/5 (18 votes)
13 Nov 2010CPOL 31.4K   22   5
LinkedServer allows you to access resources in the other resources. Consider, you have a server named "ServerA" and you would like to grab some data from the remote server named "ServerB". In that case, you need to create a linked server. In our scenario, the linked server is "ServerB".

The linked servers communicate using an OLE DB connection. These connections handle the commands between the linked servers, so coders and administrators can query data and tables without knowing the intricacies of database communication.

Here is the code example that shows how to create LinkedServer using SMO:

C#
Server srv = new Server(@"INSTANCEA");
LinkedServer lsrv = new LinkedServer(srv, "INSTANCEB"); 
LinkedServerLogin login = new LinkedServerLogin();
login.Parent = lsrv;
login.Name = "LOGIN_ON_INSTANCEA";
login.RemoteUser = "LOGIN_ON_INSTANCEB";
login.SetRemotePassword("PASSWORD");
login.Impersonate = false;
lsrv.ProductName = "SQL Server";
lsrv.Create();
login.Create();

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Marwin Cassovia Soft
Slovakia Slovakia
My name is Robert Kanasz and I have been working with ASP.NET, WinForms and C# for several years.
MCSD - Web Applications
MCSE - Data Platform
MCPD - ASP.NET Developer 3.5
- Web Developer 4
MCITP - Database Administrator 2008
- Database Developer 2008
MCSA - SQL Server 2012
MCTS - .NET Framework 3.5, ASP.NET Applications
- SQL Server 2008, Database Development
- SQL Server 2008, Implementation and Maintenance
- .NET Framework 4, Data Access
- .NET Framework 4, Service Communication Applications
- .NET Framework 4, Web Applications
MS - Programming in HTML5 with JavaScript and CSS3 Specialist

Open source projects: DBScripter - Library for scripting SQL Server database objects


Please, do not forget vote

Comments and Discussions

 
GeneralMy vote of 5 Pin
MahendraChawhan14-Oct-12 4:05
professionalMahendraChawhan14-Oct-12 4:05 
GeneralRe: My vote of 5 Pin
Kanasz Robert16-Oct-12 3:38
professionalKanasz Robert16-Oct-12 3:38 
GeneralIt requires ALTER ANY LINKED SERVER permission. Pin
Kanasz Robert30-Nov-10 2:59
professionalKanasz Robert30-Nov-10 2:59 
GeneralReason for my vote of 5 Good tip. What are the necessary use... Pin
sjelen30-Nov-10 1:52
professionalsjelen30-Nov-10 1:52 
GeneralReason for my vote of 5 Thanks for sharing this tip. Pin
linuxjr28-Nov-10 12:37
professionallinuxjr28-Nov-10 12:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.