Teradata

Card Puncher Data Processing

Teradata

About

Teradata is a full parallel query system.

Architecture

AMP

The AMP is a unit of parallelism:

  • Storing and retrieving data rows using the file system
  • Aggregating data
  • Joining processing between multiple tables
  • Sorting and formatting output data

SQL Operation

Insert

Teradata Insert

Parallel Query

Find all orders from today, along with the items ordered

SELECT *
FROM Orders o, Lines i
WHERE o.order= i.order
AND o.date = today() 

Teradata Parallel Query





Discover More
Data System Architecture
Database - Parallel query processing

In Distributed Query Processing, the results are all stored in a single “head” node. In Parallel Query Processing, the results are stored across many nodes. In Distributed Query Processing, queries...



Share this page:
Follow us:
Task Runner