Transfer Netezza to SQL Server
Fast, streaming database-to-database transfer with parallel processing

Terminal
.\FastTransfer.exe `
--sourceconnectiontype "nzsql" `
--sourceserver "your-source-server" `
--sourceuser "your-username" `
--sourcepassword "your-password" `
--sourcedatabase "your-source-db" `
--query "SELECT * FROM your_schema.your_table" `
--targetconnectiontype "msbulk" `
--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"Source - Netezza
IBM Netezza is a high-performance data warehouse appliance. FastTransfer integrates Netezza-specific optimizations.
Features:
- •Full Netezza protocol support
- •Optimized for appliance architectures
- •Support for native parallel methods
Parallel Method - Ntile
Divides data into N equal partitions based on a numeric column.
Requirement: Requires a numeric distribution column
Available parallel methods with Netezza:
Destination - SQL Server
FastTransfer uses SqlBulkCopy, Microsoft's native API for bulk loading. This method offers the best possible performance for SQL Server.
Loading method:
SqlBulkCopy API
Advantages:
- •Native SqlBulkCopy
- •High-performance bulk loading
- •Support for SQL Server-specific types
