How to load data from Looker to MySQL Destination
Learn how to use Airbyte to synchronize your Looker 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.
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
- 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
Move Large Volumes, Fast
An Extensible Open-Source Standard
Full Control & Security
Fully Featured & Integrated
Enterprise Support with SLAs
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
First, determine which Looker reports or dashboards contain the data you need to move to MySQL. Ensure that you have the necessary permissions to access and export this data. Also, define the specific fields and filters to apply to get the exact dataset you require.
In Looker, navigate to the report or dashboard containing the data you want to export. Use the "Download" option to export the data in CSV format. This is typically done by clicking the gear icon or ellipsis (three dots) near the top-right of the report and selecting "Download" > "As CSV". Save the CSV file to your local machine.
Before importing data, ensure that your MySQL database is ready to receive it. This involves creating a table in your MySQL database with columns matching those in the CSV file. Use a MySQL client or command-line interface to create the table with appropriate data types for each column.
Open the exported CSV file in a spreadsheet application like Excel or a text editor to clean and format the data. Ensure there are no missing headers, and the data types align with your MySQL table structure. Save any changes to the CSV file.
Use the MySQL `LOAD DATA INFILE` command to import the CSV data into MySQL. First, move the CSV file to the server where your MySQL instance is running, if necessary. Then execute a command like this:
```sql
LOAD DATA INFILE '/path/to/your/file.csv'
INTO TABLE your_table_name
FIELDS TERMINATED BY ','
ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 ROWS;
```
This command assumes the CSV file is stored on the server in a location accessible by MySQL and that the first row of the CSV contains headers.
After importing, verify the data integrity by running SELECT queries on the MySQL table. Check for any discrepancies, such as missing rows or incorrect data types, and make necessary corrections by re-importing data or adjusting the table structure.
If you anticipate moving data from Looker to MySQL regularly, consider automating the process. This can be done by scripting the export and import steps using tools like Python or shell scripts, which can run at scheduled intervals. However, this requires additional setup and testing to ensure reliability.
By following these steps, you'll be able to manually transfer data from Looker to a MySQL database without the use of third-party connectors or integrations.