How to load data from Omnisend to MySQL Destination
Learn how to use Airbyte to synchronize your Omnisend data into MySQL Destination within minutes.


Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
Building in-house pipelines
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
After Airbyte
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
Setup Complexities simplified!
Simple & Easy to use Interface
Airbyte is built to get out of your way. Our clean, modern interface walks you through setup, so you can go from zero to sync in minutes—without deep technical expertise.
Guided Tour: Assisting you in building connections
Whether you’re setting up your first connection or managing complex syncs, Airbyte’s UI and documentation help you move with confidence. No guesswork. Just clarity.
Airbyte AI Assistant that will act as your sidekick in building your data pipelines in Minutes
Airbyte’s built-in assistant helps you choose sources, set destinations, and configure syncs quickly. It’s like having a data engineer on call—without the overhead.
What sets Airbyte Apart
Modern GenAI Workflows
Streamline AI workflows with Airbyte: load unstructured data into vector stores like Pinecone, Weaviate, and Milvus. Supports RAG transformations with LangChain chunking and embeddings from OpenAI, Cohere, etc., all in one operation.
Move Large Volumes, Fast
Quickly get up and running with a 5-minute setup that enables both incremental and full refreshes for databases of any size, seamlessly scaling to handle large data volumes. Our optimized architecture overcomes performance bottlenecks, ensuring efficient data synchronization even as your datasets grow from gigabytes to petabytes.
An Extensible Open-Source Standard
More than 1,000 developers contribute to Airbyte’s connectors, different interfaces (UI, API, Terraform Provider, Python Library), and integrations with the rest of the stack. Airbyte’s AI Connector Builder lets you edit or add new connectors in minutes.
Full Control & Security
Airbyte secures your data with cloud-hosted, self-hosted or hybrid deployment options. Single Sign-On (SSO) and Role-Based Access Control (RBAC) ensure only authorized users have access with the right permissions. Airbyte acts as a HIPAA conduit and supports compliance with CCPA, GDPR, and SOC2.
Fully Featured & Integrated
Airbyte automates schema evolution for seamless data flow, and utilizes efficient Change Data Capture (CDC) for real-time updates. Select only the columns you need, and leverage our dbt integration for powerful data transformations.
Enterprise Support with SLAs
Airbyte Self-Managed Enterprise comes with dedicated support and guaranteed service level agreements (SLAs), ensuring that your data movement infrastructure remains reliable and performant, and expert assistance is available when needed.
What our users say

Raman Singh
Predictable, straightforward pricing model that simplified budgeting and significantly reduced overall spend

Chase Zieman

“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”

Rupak Patel
"With Airbyte, we could just push a few buttons, allow API access, and bring all the data into Google BigQuery. By blending all the different marketing data sources, we can gain valuable insights."
How to Sync to Manually
Step 1: Export Data from Omnisend
Begin by logging into your Omnisend account. Navigate to the section where your data is stored, such as contacts, campaigns, or other relevant sections. Use the export functionality provided by Omnisend to download your data in a CSV or Excel format. Make sure to select the appropriate fields that you want to transfer and save the file to your local machine.
Step 2: Prepare the Data for Import
Open the exported file using a spreadsheet program like Microsoft Excel or Google Sheets. Review the data to ensure that it is clean and well-organized. Remove any unnecessary columns or rows, and ensure all data entries are correctly formatted. Save the file as a CSV, as this is a format that is easily imported into MySQL.
Step 3: Set Up a MySQL Database
Log into your MySQL server using a client such as MySQL Workbench or the command line. Create a new database if necessary and then define a table structure that matches the data fields in your CSV file. Use the appropriate data types for each column, e.g., VARCHAR for text, INT for numbers, etc.
```sql
CREATE DATABASE omnisend_data;
USE omnisend_data;
CREATE TABLE contacts (
id INT AUTO_INCREMENT PRIMARY KEY,
email VARCHAR(255),
first_name VARCHAR(100),
last_name VARCHAR(100),
subscribed_at DATE
);
```
Step 4: Transfer the CSV File to the MySQL Server
If your MySQL server is on a remote machine, use a secure method such as SCP (Secure Copy Protocol) or FTP to transfer your CSV file from your local machine to the server where MySQL is hosted. Ensure the file is placed in a directory that your MySQL server has access to.
Step 5: Import the CSV Data into MySQL
Use the MySQL `LOAD DATA INFILE` command to import the CSV data into your MySQL table. Connect to your MySQL database and run the following command, adjusting file paths and column mappings as necessary.
```sql
LOAD DATA INFILE '/path/to/your/file.csv'
INTO TABLE contacts
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 ROWS
(email, first_name, last_name, @subscribed_at)
SET subscribed_at = STR_TO_DATE(@subscribed_at, '%Y-%m-%d');
```
Make sure to replace `/path/to/your/file.csv` with the actual path to your CSV file. Adjust field and line delimiters if your CSV uses different ones.
Step 6: Verify the Data Import
After the data import process is complete, verify that the data in the MySQL table matches the data from your CSV file. Use SQL queries to check the number of rows and spot-check some of the data entries.
```sql
SELECT * FROM contacts LIMIT 10;
```
Check for any discrepancies and address them by adjusting the CSV file or import settings and re-importing if necessary.
Step 7: Secure and Backup Your Data
Once you have verified that the data is correctly imported, ensure that your MySQL database is secure. Set up appropriate user permissions and consider encrypting sensitive data. Additionally, create a backup of your database to prevent data loss.
```sql
mysqldump -u username -p omnisend_data > omnisend_data_backup.sql
```
Replace `username` with your MySQL username. Store backups in a secure location and consider setting up a regular backup schedule.