Stan
Stan

Reputation: 38255

How to create a link server: target is SQL server 2000 on a SQL server 2008

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

Answers (2)

Joel Mansford
Joel Mansford

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

OMG Ponies
OMG Ponies

Reputation: 332581

You can read the MSDN documentation for "Creating Linked Servers"

  • the port must be accessible through the firewall
  • you create the instance using an account with appropriate permissions on the SQL Server 2000 box

Upvotes: 1

Related Questions