Transfer DuckDB to SAP HANA

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

    FastTransfer
    Terminal
    .\FastTransfer.exe `
      --sourceconnectiontype "duckdbstream" `
      --sourceserver "your-source-server" `
      --sourceuser "your-username" `
      --sourcepassword "your-password" `
      --sourcedatabase "your-source-db" `
      --query "SELECT * FROM your_schema.your_table" `
      --targetconnectiontype "hanabulk" `
      --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 - DuckDB

    DuckDB is a fast and efficient in-process analytical database. FastTransfer uses DuckDBStream to read multiple file formats with exceptional performance.

    Features:

    • Direct reading of multiple formats (CSV, Parquet, JSON, XLSX)
    • Wildcard support to process multiple files
    • No installation required - embedded engine

    Parallel Method - Ntile

    Uses the distributed column and NTILE to build evenly sized chunks. Each thread exports a range from the column values; uniqueness is not required.

    Available parallel methods with DuckDB:

    Destination - SAP HANA

    FastTransfer uses SAP HANA's bulk loading capabilities optimized for in-memory databases, ensuring fast loading.

    Loading method:

    HANA Bulk Copy

    Advantages:

    • Optimized in-memory bulk load
    • Support for columnar tables
    • Maximized in-memory performance