Skip to main content

How to create MySQL Link Server in SQL Server 2012

Workbench is a free tool for MySQL but it is collection of issues in working environment. So I came back on SQL Server management studio. But think if our requirement is something like what , data will be at same place in MySQL and we have to access from SQL Server. Then we can use SQL Server's  Server object’s Link serverToday I am going to share 7 steps how I have made linked server from SQL Server to MySQL. 



1st Ensure that we have MySQL Connector/ODBC 5.2 is installed. To verify check Control panel, if it is not then download and installed.



2nd Now open ODBC Connection Manager Window from control panel/Administrator Tool and ODBC Data Source. I have been selected 64 bit because my system is 64 bit platform.



3rd Now Add New Data Source Name, Server name, Port and Credentials. Then Check by Test option, is everything is all right. If all is OK then click on ok and just close this window.


4th Now Go to SQL Server and drill-down the Server object. We will see Linked Server. Just right click and choose New Linked Server.

5th Now Create Link server by Filling required information like below: give appropriate server name, provider as given, Product name, Data Source Name and Provider string and we can also give catalog. Linked Server name I have given XXX and Data-source name will be XYZ, which i gave created earlier from ODBC Connection manager.


6th Now give the Remote Login and Credential in Next Tab of window.


Or 
we can also use below script to create Linked Server


USE [master]
GO

/****** Object:  LinkedServer [XXX]    Script Date: 26-11-2014 15:20:54 ******/
EXEC master.dbo.sp_addlinkedserver @server = N'XXX', @srvproduct=N'MySQL', @provider=N'MSDASQL', @datasrc=N'xyz', @provstr=N'DRIVER={MySQL ODBC 5.2 Driver};SERVER=xx.xx.1.xx;PORT=3306;DATABASE=xxxxxx; USER=suman;PASSWORD= Blue@123;OPTION=3;', @catalog=N'xxxx'
 /* For security reasons the linked server remote logins password is changed with ######## */
EXEC master.dbo.sp_addlinkedsrvlogin @rmtsrvname=N'XXX',@useself=N'False',@locallogin=NULL,@rmtuser=N'suman',@rmtpassword='########'


EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'collation compatible', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'data access', @optvalue=N'true'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'dist', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'pub', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'rpc', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'rpc out', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'sub', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'connect timeout', @optvalue=N'0'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'collation name', @optvalue=null
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'lazy schema validation', @optvalue=N'false'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'query timeout', @optvalue=N'0'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'use remote collation', @optvalue=N'true'
EXEC master.dbo.sp_serveroption @server=N'XXX', @optname=N'remote proc transaction promotion', @optvalue=N'true'

7th After that we will see the Linked server created as below …

8th Now run below query to select record from sql server to mysql using link server.

select * from openquery(xxx,'select * from DB.TABLE')


#yoyo MySQL Data in SQL Server….



Comments

Popular posts from this blog

History of MySQL from AB Corp to Cloud Database

MySQL was created by a Swedish company, MySQL AB, founded by David Axmark, Allan Larsson and Michael "Monty" Widenius. Original development of MySQL by Widenius and Axmark began in 1994. The first version of MySQL appeared on 23 May 1995. Its name is a combination of "My", the name of co-founder Michael Widenius's daughter,and "SQL", the abbreviation for Structured Query Language. ·          23 May 1995 - First internal release ·          Year 1996 - Version 3 o     Simple CRUD operations o     January 1997 Windows version was released on 8 January 1998 for Windows 95 and NT o     production release 1998, from www.mysql.com ·          Year 2002 - Version 4 o     MyISAM o     unions o     Tracking o     B-trees o     s...

Configure Impersonation Authentication in IIS8 for MVC Application

Impersonation is when ASP.NET executes code in the context of an authenticated and authorized client. By default, ASP.NET does not use impersonation and instead executes all code using the same user account as the ASP.NET process, which is typically the ASPNET account. There are 5 below steps by which we can establish Impersonation configuration in our secured application environment. 1.)    Creation of Application/Proxy user where Application is hosted. 2.)    Give appropriate access to the user. 3.)    Create Database Login user on database. 4.)    Authenticate User and provide credential on IIS. 5.)    Then Configure web.config on Application.

How to add an article in Transactional Replication

If we have a set-up of Transactional Replication for Data Distribution running and wanting to add new object to replication on other server we can follow below process. To add an article In Transaction replication with PUSH Subscription