Hi @Mukesh Patel,
SQL Server ODBC Driver: For Microsoft SQL Server, you can configure bulk fetch/load operations using the "BulkFetchEnabled" and "BulkRowCount" connection parameters. "BulkFetchEnabled" enables or disables bulk fetch operations, and "BulkRowCount" specifies the number of rows to be fetched in each batch. You can set "BulkFetchEnabled" to "1" to enable bulk fetch, and set "BulkRowCount" to an appropriate value to specify the number of rows to be fetched in each batch.
Oracle ODBC Driver: For Oracle, you can configure bulk fetch/load operations using the "FetchBufferSize" connection parameter. "FetchBufferSize" specifies the number of rows to be fetched in each batch. You can set "FetchBufferSize" to an appropriate value to optimize bulk fetch operations.
IBM DB2 ODBC Driver: For IBM DB2, you can configure bulk fetch/load operations using the "BlockForNRows" connection parameter. "BlockForNRows" specifies the number of rows to be fetched in each batch. You can set "BlockForNRows" to an appropriate value to optimize bulk fetch operations.
Additionally, you may need to also consider tuning other settings such as buffer sizes, fetch options, and network settings to further optimize performance.
Best regards,
Seeya
If the answer is the right solution, please click "Accept Answer" and kindly upvote it.