<t>What you are looking for are Linked Servers. You can get to them in SSMS from the following location in the tree of the Object Explorer:<br/>
<br/>
Server Objects-->Linked Servers<br/>
<br/>
or you can use sp_addlinkedserver.<br/>
<br/>
You only have to set up one. Once you have that, you can call a table on the other server like so:<br/>
<br/>
select<br/>
*<br/>
from<br/>
LocalTable,<br/>
[OtherServerName].[OtherDB].[dbo].[OtherTable]<br/>
<br/>
```<br/>
<br/>
Note that the owner isn't always `dbo`, so make sure to replace it with whatever schema you use.</t>