Teradata Basics
- Teradata - SubQueries
- Teradata - Joins
- Teradata - Primary Index
- Teradata - CASE & COALESCE
- Teradata - Aggregate Functions
- Teradata - Built-in Functions
- Teradata - Date/Time Functions
- Teradata - String Manipulation
- Teradata - SET Operators
- Logical & Conditional Operators
- Teradata - SELECT Statement
- Teradata - Data Manipulation
- Teradata - Tables
- Teradata - Data Types
- Teradata - Relational Concepts
- Teradata - Architecture
- Teradata - Installation
- Teradata - Introduction
Teradata Advanced
- Teradata - BTEQ
- Teradata - FastExport
- Teradata - MultiLoad
- Teradata - FastLoad
- Teradata - Performance Tuning
- Teradata - User Management
- Teradata - Data Protection
- Teradata - OLAP Functions
- Teradata - Partitioned Primary Index
- Teradata - JOIN Strategies
- Teradata - Stored Procedure
- Teradata - Macros
- Teradata - Views
- Teradata - Join Index
- Teradata - Hashing Algorithm
- Teradata - Explain
- Teradata - Compression
- Teradata - Statistics
- Teradata - Secondary Index
- Teradata - Space Concepts
- Teradata - Table Types
Teradata Useful Resources
- Teradata - Discussion
- Teradata - Useful Resources
- Teradata - Quick Guide
- Teradata - Questions & Answers
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Teradata - Tables
Tables in Relational model are defined as collection of data. They are represented as rows and columns.
Table Types
Types Teradata supports different types of tables.
Permanent Table − This is the default table and it contains data inserted by the user and stores the data permanently.
Volatile Table − The data inserted into a volatile table is retained only during the user session. The table and data is dropped at the end of the session. These tables are mainly used to hold the intermediate data during data transformation.
Global Temporary Table − The definition of Global Temporary table are persistent but the data in the table is deleted at the end of user session.
Derived Table − Derived table holds the intermediate results in a query. Their pfetime is within the query in which they are created, used and dropped.
Set Versus Multiset
Teradata classifies the tables as SET or MULTISET tables based on how the duppcate records are handled. A table defined as SET table doesn’t store the duppcate records, whereas the MULTISET table can store duppcate records.
Sr.No | Table Commands & Description |
---|---|
1 | CREATE TABLE command is used to create tables in Teradata. |
2 | ALTER TABLE command is used to add or drop columns from an existing table. |
3 | DROP TABLE command is used to drop a table. |