Reputation: 38255
The target is a SQL server 2000 on remote host with firewall. Is it possible to create a link server on my local SQL server 2008 SSMS?
If yes, what should I pay attention to? And what ports should be open too? Thanks.
Upvotes: 1
Views: 381
Reputation: 1316
Absolutely, you need to open up TCP port 1433 - However I'd strongly recommend using a VPN or at the very least restrict via the firewall the range of IPs allowed to connect. Note that SQL traffic is unencrypted and very easy to read.
In management studio connect to the 2008 machine. Then Server Objects->Linked Servers->Right click new Linked Server.
If you only want access to a couple of tables also checkout the Synonym functionality in books online.
Upvotes: 1
Reputation: 332581
You can read the MSDN documentation for "Creating Linked Servers"
Upvotes: 1