Optimizing Teradata Stage Table Design for Faster Load Times: The Importance of Data Types and Sizes Learn how to optimize load times in Teradata by choosing the correct data types and sizes for stage tables. Read on for a real-life example.
Teradata Statistics Design for High Performance: An Introduction Learn how Teradata 14.10 simplifies statistics collection for better performance. Discover new features that identify unused and missing statistics.
Teradata Statistics Collection for Improved Query Performance Learn how to optimize your Teradata queries with statistics collection. Discover what to collect and what to omit for accurate query estimation.
VantageCloud Lake: Turbocharge Your Data Warehousing with Teradata's Innovative Solution Introduction Parallel database architectures have undergone significant advancements over the past four decades, transitioning from shared memory architecture to shared disk architecture and, finally, to the more efficient shared-nothing architecture. Databases designed specifically for cloud environments incorporate elements of shared-disk and shared-nothing architectures. Teradata is a powerful and scalable relational
Teradata ALTER Table vs. INSERT INTO: Which Method is Efficient? Teradata ALTER Table versus INSERT INTO Altering the structure of a substantial Teradata table can consume significant resources. Essentially, there are two approaches: altering the DDL through Teradata ALTER TABLE or generating an empty table with the desired DDL statement and transferring data via the Teradata INSERT INTO statement. Each
Optimizing Teradata Queries: From No Index to Hashed NUSI The initial situation without any index In this blog, I will demonstrate how to optimize a query using Teradata's tools. We will begin with the following test scenario: CREATE TABLE Orders ( OrderId BIGINT NOT NULL, CustomerId BIGINT NOT NULL, Amount BIGINT ) PRIMARY INDEX (OrderId); INSERT INTO Orders SELECT