Fastest Teradata Migration: TPT

When dealing with massive datasets in Teradata, standard JDBC connections often become the bottleneck. To move 2 Billion+ records efficiently, you need to bypass the SQL layer entirely and use Teradata Parallel Transporter (TPT). Why TPT? Standard SQL extractors pull data row-by-row through the SQL Parser and GDO (Global Distributed Object) layer — this is the primary bottleneck in any ODBC/JDBC connection. TPT uses the Export Operator, which bypasses this layer entirely and pulls data in blocks directly from the AMPs (Access Module Processors), enabling true massive parallelism. ...

March 19, 2026 · Arjun Sajeevan

SQL Server Performance: Accelerating Inserts with TABLOCK

Bulk inserting millions of rows into staging tables sounds simple—until row-level locking and full transaction logging turn it into a major pipeline bottleneck. What is TABLOCK? TABLOCK is a table-level lock hint. While row-level locking is great for concurrency, it is expensive for massive ETL jobs. By using TABLOCK, you tell SQL Server to take a single lock on the entire table. Why does it make Inserts faster? Minimal Logging: When used with a SELECT INTO or an INSERT INTO ... SELECT on a heap (a table without a clustered index), TABLOCK allows for “Minimal Logging,” which significantly reduces I/O. Reduced Lock Overhead: The engine doesn’t have to manage millions of individual row locks. Parallelism: In some configurations, it allows multiple threads to write to the table simultaneously.Since it locks the whole table, other users won’t be able to write to it until your job is done The Command: INSERT INTO TargetTable WITH (TABLOCK) SELECT * FROM SourceTable;

February 21, 2026 · Arjun Sajeevan