By: Ranga Babu | Updated: 2016-12-09 | Comments (7) | Related: > Linked Servers
Problem
SQL Server Linked Servers are used to query remote databases and in this tip we will learn how to configure a linked server for a MySQL server from SQL Server.
Solution
Here are the steps to create a linked server to a MySQL server.
First we need to create an ODBC data source to the MySQL server on the box where SQL Server is installed. In my case I have MySQL and SQL Server installed on the same box.
Go to Start > Administrative Tools > Data Sources (ODBC) > System DSN and select Add
Select the MySQL ODBC driver.
Give the data source name of your choice. Input the TCP/IP Server address, port, user and password for the MySQL server and click OK.
Now open SQL Server Management Studio (SSMS) and login to SQL Server.
In the Object Explorer for the SQL Server instance, go to Server Objects and right click and select New > Linked Server...
Give the linked server a name of your choice.
Under the Provider drop down select Microsoft OLEDB Provider for ODBC Drivers.
Input the Product name as MySQL and enter the data source name which was created earlier.
Go to the Security tab and enter the remote login and password (on the bottom) and click OK.
Now test the linked server which was just created and you should be able to see the objects for the MySQL data source (note I hid the names of the tables from my server in the image below).
Next Steps
- Read these additional tips about Linked Servers.
- Also check out this tip: Access MySQL data from SQL Server via a Linked Server
About the author
This author pledges the content of this article is based on professional experience and not AI generated.
View all my tips
Article Last Updated: 2016-12-09