Transfer Oracle to ClickHouse

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

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

    Oracle Database is the world's most widely used enterprise database. FastTransfer leverages the ODP.NET driver for maximum performance during Oracle transfers.

    Features:

    • Native Oracle ODP.NET driver
    • Full support for Oracle-specific types
    • Optimized for large volumes

    Parallel Method - Ntile

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

    Requirement: Requires a numeric distribution column

    Available parallel methods with Oracle:

    Destination - ClickHouse

    FastTransfer uses ClickHouse's native protocol for optimized bulk insertions on this column-oriented analytics database.

    Loading method:

    Native Protocol Bulk Copy

    Advantages:

    • Native ClickHouse protocol
    • Optimized for columnar format
    • Exceptional analytical performance