How to load data from Postgres to MySQL Destination
Learn how to use Airbyte to synchronize your Postgres 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 PostgreSQL
1. Access PostgreSQL Command Line: Access the PostgreSQL command line interface (psql) by logging into the PostgreSQL server.
```bash
psql -U username -d database_name
```
2. List Tables: List the tables in your PostgreSQL database to identify which ones you want to export.
```sql
\dt
```
3. Export Table Structure: Use the `pg_dump` utility to export the table structure (schema) without data. This will help you create equivalent tables in MySQL.
```bash
pg_dump -U username -s -t table_name database_name > table_name_schema.sql
```
4. Export Table Data: Export the data from the PostgreSQL table using the `COPY` command to a CSV file.
```sql
COPY table_name TO '/path/to/output/table_name_data.csv' DELIMITER ',' CSV HEADER;
```
5. Repeat: Repeat steps 3 and 4 for each table you wish to export.
Step 2: Convert Data to MySQL Format
1. Edit Schema File: Open the `table_name_schema.sql` file(s) in a text editor and make necessary changes to the SQL syntax to be compatible with MySQL. This may include modifying data types, index definitions, and removing PostgreSQL-specific items.
2. Prepare Data Files: Check the CSV files for any data that might not be compatible with MySQL. This includes verifying the date formats, escaping characters, and ensuring the character encoding is supported by MySQL.
Step 3: Create Database and Tables in MySQL
1. Access MySQL Command Line: Log into the MySQL server using the command line.
```bash
mysql -u username -p
```
2. Create Database: Create a new MySQL database to hold the imported data.
```sql
CREATE DATABASE new_database_name;
USE new_database_name;
```
3. Create Tables: Execute the modified schema SQL script(s) to create the tables in the new MySQL database.
```bash
source /path/to/table_name_schema.sql
```
4. Verify Structure: Verify that the tables were created correctly in MySQL.
```sql
SHOW TABLES;
DESCRIBE table_name;
```
Step 4: Import Data into MySQL
1. Disable Constraints: Temporarily disable foreign key checks to avoid constraint violations during import.
```sql
SET FOREIGN_KEY_CHECKS=0;
```
2. Import Data: Use the `LOAD DATA INFILE` command to import the CSV file(s) into the corresponding MySQL tables.
```sql
LOAD DATA INFILE '/path/to/output/table_name_data.csv' INTO TABLE table_name
FIELDS TERMINATED BY ','
OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 LINES;
```
3. Re-enable Constraints: Re-enable foreign key checks after the import is complete.
```sql
SET FOREIGN_KEY_CHECKS=1;
```
4. Verify Data: Verify that the data has been imported correctly by querying the tables.
```sql
SELECT * FROM table_name LIMIT 10;
```
5. Repeat: Repeat steps 1 to 4 for each table you wish to import.
Step 5: Post-Import Cleanup
1. Check for Errors: Review the import process for any errors and ensure data integrity.
2. Recreate Indexes and Constraints: If you didn't include indexes and constraints in the schema files, create them now.
3. Optimize Tables: Optimize the tables to improve performance.
```sql
OPTIMIZE TABLE table_name;
```
4. Backup: Take a backup of the MySQL database now that the data has been successfully migrated.
Things to note
- Data Types: Pay close attention to differences in data types between PostgreSQL and MySQL. You may need to map certain types from one to the other.
- Character Encoding: Ensure that the character encoding is consistent between the two databases to avoid any data corruption.
- Timestamps: PostgreSQL and MySQL may handle timestamps differently; make sure to adjust them during the conversion.
- Stored Procedures/Triggers: If you're using stored procedures or triggers, you'll need to rewrite them in MySQL's syntax.
- Performance: Large datasets may take a significant amount of time to export/import. Consider performing the migration during off-peak hours.