How to load data from SurveyMonkey to TiDB
Learn how to use Airbyte to synchronize your SurveyMonkey data into TiDB 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
Begin by logging into your SurveyMonkey account. Navigate to the survey whose data you wish to export. Use the 'Analyze Results' tab to access the data. Choose the 'Export' option, and select CSV format for your export. Download the CSV file to your local machine.
Open the downloaded CSV file using a spreadsheet application like Microsoft Excel or Google Sheets. Review the data to ensure it is complete and correctly formatted. Make any necessary adjustments, such as renaming columns to match the TiDB schema or removing unwanted data.
Ensure you have a TiDB cluster set up and running. You can deploy TiDB on-premises or use a cloud service. Verify your connection details, including the host, port, username, and password, which will be needed to import data.
Access your TiDB instance using a MySQL client or command-line tool. Create a new database if needed using the command `CREATE DATABASE survey_data;`. Then, create the necessary tables to hold the survey data, ensuring the schema matches the structure of your CSV file. Use SQL `CREATE TABLE` statements to define columns and data types.
Use the `LOAD DATA LOCAL INFILE` SQL command to import data from the CSV file into your TiDB table. First, transfer the CSV file to the server where TiDB is running if it’s not on your local machine. Then execute a command such as:
```sql
LOAD DATA LOCAL 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 first row in your CSV contains headers and should be ignored.
After the import, it's crucial to verify that the data in TiDB matches the source data from SurveyMonkey. Run SQL queries to check the count of rows and review a sample of the data to ensure accuracy. Compare this with the original CSV to confirm consistency.
Once data is verified, perform any necessary cleanup within TiDB. This may include removing duplicate entries, indexing important columns for faster queries, and optimizing table structures. Utilize SQL commands to refine your data as needed for your specific use case.
By following these steps, you can manually transfer data from SurveyMonkey to TiDB without relying on third-party connectors or integrations.