View on GitHub

MariaDBToSQLServer-DataIntegration

How to integrate data between SQL Server and MariaDB using SSIS

We all know about SSIS. Its a great tool to make a data integration between systems and folders. However, the only thing that is missing in SSIS is the real time data integration such as Kafka.

In this quick steps, we will send data from SQL Server to MariaDB using SSIS tool.

Setup and create the SSIS project

Download the MariaDB ODBC connector

Click on this link to download MariaDB connector MariaDB Connector and follow the steps below to download the right MariaDB Connector thats matching with your OS.

Setup the MariaDB connector

Table information between the two DB systems

In order to copy the data between the databases, you need to create a table in the destionation database in order to get all the upcoming records inside it. You have to be aware about the columns length, name and datatype. For example if the is a column name "ID" and datatype is "int" as a primary key, the same column with the same specifications must be locatedc in the destination database table.

SSIS ODBC Connector, SQL Server OLE DB Provider

Now the SQL Server connection is ready to fetch the records, now lets setup the destination of these records, is Maria DB ODBC.

Thats all

Mohammad Masadeh

Sr Data Engineer