I am looking to create a SQL view which uses data from multiple servers. All of these are MS SQL Server 2008 and later
From my understanding, there are two ways to go about in gaining access to the other servers:
Using the stored procedure "sp_addlinkedserver"
Using Management Studio UI to register new servers (more info here: http://msdn.microsoft.com/en-us/library/bb934126.aspx)
I was wondering if there are any substantial differences in either approach in terms of creating a view, or if both would work just fine? And as a follow up question, are there typically security settings in management studio I would need to alter that would allow me to publish views from different servers in the first place?