How to load data from Salesforce to MySQL Destination
Learn how to use Airbyte to synchronize your Salesforce 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: Extract Data from Salesforce
1.1 Login to Salesforce
Go to Salesforce and log in with your credentials.
1.2 Access Data Export Service
- Navigate to Setup by clicking on the gear icon in the top right corner.
- In the Quick Find box, type “Data Export” and select the Data Export option.
1.3 Schedule or Run Export
Click on Export Now or Schedule Export. For immediate data extraction, choose Export Now
.1.4 Select Data to Export
Choose the objects and fields you want to export. You can export standard objects like Accounts, Contacts, Leads, Opportunities, etc., and any custom objects you may have.
1.5 Export Data
Salesforce will prepare a series of CSV files. Once the export is ready, you will receive an email with a link to download the files.
1.6 Download the CSV Files
Download the CSV files to your local system.
Step 2: Prepare the Data
2.1 Review and Clean Data
- Open the CSV files and review the data for any inconsistencies or errors.
- Clean the data if necessary, which may include removing duplicates, fixing formatting issues, or filling in missing values.
2.2 Format the Data
- Ensure that the data types in the CSV files match the data types in MySQL (e.g., dates, numbers, strings).
- You may need to convert date formats, encode special characters, or adjust numeric values.
Step 3: Set Up MySQL Database
3.1 Install MySQL
If not already installed, download and install MySQL on your server or local machine.
3.2 Access MySQL
Open the MySQL command-line client or use a GUI tool like MySQL Workbench to access your MySQL database.
3.3 Create a Database
Create a new database for your Salesforce data:
CREATE DATABASE salesforce_data;
USE salesforce_data;
3.4 Create Tables
Create tables in MySQL that correspond to the Salesforce objects you’re importing. For example:
CREATE TABLE accounts (
id INT PRIMARY KEY,
name VARCHAR(255),
industry VARCHAR(255),
... -- Add other fields as necessary
);
Make sure that the fields and data types align with the CSV data you intend to import.
Step 4: Import Data into MySQL
4.1 Prepare Import Command
Use the LOAD DATA INFILE command to import the CSV files into MySQL. For example:
LOAD DATA INFILE '/path/to/your/accounts.csv'
INTO TABLE accounts
FIELDS TERMINATED BY ',' ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 LINES; -- Use IGNORE 1 LINES if your CSV has a header row
4.2 Execute Import Command
Run the LOAD DATA INFILE command for each CSV file to import the data into the corresponding MySQL tables.
4.3 Verify Data Import
After importing, verify that the data is correctly imported:
SELECT * FROM accounts LIMIT 10;
Step 5: Post-Import Checks and Optimization
5.1 Check for Errors
Review the data in MySQL to ensure there are no import errors or data inconsistencies.
5.2 Create Indexes
To improve query performance, create indexes on frequently queried columns:
CREATE INDEX idx_account_name ON accounts (name);
5.3 Optimize Tables
Optimize the tables if necessary to improve performance:
OPTIMIZE TABLE accounts;
Tips:
- Backup Data: Always back up your MySQL database before importing large amounts of data.
- Security: Ensure that the data is securely transferred and stored, especially if it contains sensitive information.
- Limits: Be aware of any file size limits or timeouts in MySQL when importing large files.
- Character Encoding: Make sure to set the correct character encoding for the MySQL tables to avoid issues with special characters.
- Data Mapping: Ensure that the data from Salesforce maps correctly to the MySQL schema, including handling any relationships between objects.
By following these steps, you can move data from Salesforce to MySQL without the use of third-party connectors or integrations. Remember to test the process with a small dataset before moving large amounts of data.