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

Why Fload doesn’t support multiset table?

9 Answers  


What is the use of having index on table?

0 Answers  


Which Teradata concept allows more than one model generation?

1 Answers   TCS,


What is the difference between fastload and multiload?

0 Answers  


Why do Hash joins usually perform better than Merge Joins?

1 Answers  






Explain parsing engine in teradata?

0 Answers  


What is meant by a Highest Cost Plan?

0 Answers  


What do you mean by parsing?

0 Answers  


how many modules are there in telecome domain?how to explain the architecture?

0 Answers  


What is the use of upsert command in teradata?

1 Answers  


Backup Script was blocked you are unable to archive the data now. how do you analyze it and where do you identify ?

0 Answers  


I have a table with emp id, emp name, dept id and sal where dept id is NUSI. SEL * FROM EMP WHERE DEPTID = 100. Can any one explain how it will fetch the record.

4 Answers  


Categories