What are the types of tables in Teradata

Answers were Sorted based on User's Feedback



What are the types of tables in Teradata..

Answer / terad

Types of Tables in Teradata :

1.Derived
2.Volatile
3.Global Temp.
4.Permanent
4.1. SET
4.2. Multiset

Is This Answer Correct ?    61 Yes 1 No

What are the types of tables in Teradata..

Answer / rajesh kumar

Permenant Tables:
1. SET table - Strictly NO duplicate values [By-Default]
2. MULTISET table - Allows Duplicate Values.

Temporary Tables:
1. Global Temporary Table - supports [Compression in table],
when session logged out, Table persists and its record gets
vanished.
2. Volatile Table - When session logged out, TABLE and its
records are not available further.

I dont have idea about Derived Table, could someone
elaborate on this?

Is This Answer Correct ?    31 Yes 3 No

What are the types of tables in Teradata..

Answer / rajesh kumar

update on previous answer:

1.Derived table stores the derived result from a subquery.
2.It uses only spool space, so no table definition,
permission needed.
simple query eg:

select * from (select max(sal) from emp) DT (Max_sal)

answer:
derived table(DT) has Max salary and result would be

Max_sal- here subquery result is maintained in derived table
-------
25000

3. derived table auto drops after the query ends

Is This Answer Correct ?    22 Yes 0 No

What are the types of tables in Teradata..

Answer / preeti

1-- SET TABLE
2-- MULTISET TABLE
3-- PERMANANT TABLE
4-- GLOBAL TEMPORARY TABLE(TEMPORARY TABLE)
5-- VOLATILE TABLE
6-- DERIVED TABLE
7--INTERIM TABLES

Is This Answer Correct ?    25 Yes 9 No

What are the types of tables in Teradata..

Answer / ramya

TEMPORARY TABLES
1. Global Temporary Table
2. Derived Table
3. Volatile Table

PERMANENT Table

1. SET Table
2. MULTISET Table

Is This Answer Correct ?    16 Yes 0 No

What are the types of tables in Teradata..

Answer / yuvaevergreen

VOLATILE TABLES - Occupies spool space - Data/Definition
dropped when the session ends or user drops it.
DERIVED TABLES - Occupies spool space - Data dropped as
soon as the query ends.
GLOBAL TEMPORARY TABLES - Occupies temporary space - Data
dropped as soon as the user deletes or session ends -
Definition stored permanently in the DD.
SET/MULTISET TABLES - Occupies permanent space -
Data/Definition retained until user deletes it.

Is This Answer Correct ?    8 Yes 0 No

What are the types of tables in Teradata..

Answer / raghavender

1-- SET TABLE
2-- MULTISET TABLE
3-- GLOBAL TEMPORARY TABLE
4-- VOLATILE TABLE
5-- DERIVED TABLE

Is This Answer Correct ?    11 Yes 4 No

What are the types of tables in Teradata..

Answer / teja

Derived temporary tables
# Derived tables are local to an SQL query.
# Not included in the DBC data dictionary database, the
definition is kept in cache.
# They are specified on a query level with an AS keyword
in an sql statement

Is This Answer Correct ?    5 Yes 0 No

What are the types of tables in Teradata..

Answer / ravi bandi

permanent tables:
1.set---which thow out any rows that complete duplicates
2.mutiset--which allows multiple instances for same row.

temporary tables:

1.global temporary tables-- when it is created its
definition stored on data dictionary. the data will be
stored on temp space that's why data is active upto the
session ends, we can collect statistics on GTT.
2.volatile temporary tables--when it is created the
definition is stored on cache.the data will be stored in
spool space,thats why data and table defition both are
active up to session ends.you can't collect statistics on
VTT.
3.derived tables-- when we created the definition is stored
on cache.it is local to an sql query.
they are specified on a query level with an AS keyword in
an sql ststment.

Is This Answer Correct ?    3 Yes 0 No

What are the types of tables in Teradata..

Answer / nani

continuation of rajesh kumar.
3.when we can use the select statement in form clause and
specify the name with 'as' keyword for that statement is
called derived table

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More Teradata Interview Questions

any one answer me how they can analyzing the project using data ware housing?

0 Answers  


Hi frinds pls help me regarding this question WHY usi is two amp operation in teradata? THANKS IN ADVANCE....

3 Answers  


If I wanted to run a TPump job only once per day - basically working on a file that is produced once per day - how would you set up the parameters for that sort of job ?

0 Answers  


Explain amp in teradata?

0 Answers  


can i call router is a passive transformation

2 Answers  






What are tpump utility limitations?

0 Answers  


What is the purpose of indexes?

0 Answers  


If Fast Load Script fails and only the error tables are made available to you, then how will you restart?

0 Answers  


How is Teradata in current market?

4 Answers  


What are normalization, first normal form, second normal form and third normal form?

0 Answers  


What are the different functions performed in development phase?

0 Answers  


List the logical and conditional operators that are used with teradata along with their meanings?

0 Answers  


Categories