How to load data from Orb to TiDB
Learn how to use Airbyte to synchronize your Orb 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
First, analyze the data structure and schema in Orb. Identify the tables, fields, and data types. Document any primary keys, foreign keys, and constraints. This understanding is crucial for replicating the schema in TiDB.
Use Orb’s built-in export functionality to extract data. Most systems offer an option to export data in formats such as CSV, JSON, or SQL dumps. Choose a format that best suits your data structure and size. If there is no direct export option, you may need to use a custom script to extract the data.
Ensure that TiDB is properly installed and running. Set up your TiDB environment by configuring the necessary permissions and creating a database instance where the data will be imported. Ensure that you have sufficient user privileges to create tables and insert data.
Based on the schema documented in Step 1, manually create the necessary tables in TiDB. Use SQL commands to define the tables, fields, data types, and constraints. Ensure that the schema in TiDB mirrors the structure of the data in Orb.
If the data format exported from Orb is not directly compatible with TiDB, transform it accordingly. This could involve converting date formats, adjusting data types, or normalizing data. Use scripting languages such as Python or shell scripts for this transformation process if needed.
Use TiDB’s native import tools to load the data. For CSV files, the `LOAD DATA` SQL command can be used. For SQL dumps, execute the SQL files directly using a TiDB client like `mysql`. Ensure that the import process respects the schema and constraints defined in TiDB.
After the import, verify that all data has been transferred accurately. Perform checks to ensure data integrity, such as comparing counts of records, checking for null values, and validating key constraints. Run a subset of queries to ensure that the data behaves as expected in TiDB.
By following these steps, you can successfully move data from Orb to TiDB without relying on third-party connectors or integrations.