Transfer SAP HANA to MySQL

    Fast, streaming database-to-database transfer with parallel processing

    FastTransfer
    Terminal
    .\FastTransfer.exe `
      --sourceconnectiontype "hana" `
      --sourceserver "your-source-server" `
      --sourceuser "your-username" `
      --sourcepassword "your-password" `
      --sourcedatabase "your-source-db" `
      --query "SELECT * FROM your_schema.your_table" `
      --targetconnectiontype "mysqlbulk" `
      --targetserver "your-target-server" `
      --targetuser "your-username" `
      --targetpassword "your-password" `
      --targetdatabase "your-target-db" `
      --targetschema "your_table" `
      --targettable "your_table" `
      --parallelmethod "Ntile" `
      --distributekeycolumn "id"  `
      --degree 10  `
      --loadmode "Truncate"
    Get FastTransfer

    Source - SAP HANA

    SAP HANA is a high-performance in-memory database platform. FastTransfer optimizes transfers from HANA to leverage its capabilities.

    Features:

    • Native SAP HANA connector
    • Support for views and columnar tables
    • Optimized for in-memory data

    Parallel Method - Ntile

    Divides data into N equal partitions based on a numeric column.

    Requirement: Requires a numeric distribution column

    Available parallel methods with SAP HANA:

    Destination - MySQL

    FastTransfer leverages MySQL's bulk insert API for optimized loading. Data is inserted in batches to maximize throughput.

    Loading method:

    Bulk Insert API

    Advantages:

    • Optimized bulk insert
    • Intelligent batching
    • Support for indexes and constraints