Teradata Database Utilities and Architecture
Comprehensive quiz covering Teradata database utilities (Fastload, Multiload, TPUMP, BTEQ), architecture components (AMP, PE, Vdisk), indexing (NUPI, Primary Key), data distribution, and SQL operations.
Questions
Each AMP is responsible for a subset of rows from each table.
- True
- False
It is impossible to have skewed data when employing a Non-Unique Primary Index value?
- True
- False
How does Teradata handle data distribution when performing system configuration changes
- Creates an output map to aid in redistributing data
- Data distribution is automatic
- Creates a reconfig map to help the DBA repartition data
- None of the above
Which of the following statements about hashing are true?
- The uniqueness value is a component of the row hash value.
- In a table that has a NUPI, all rows with the same NUPI value are distributed to the same AMP.
- Two Primary Index values that hash to the same row hash value are called hash synonyms.
- The output of the hashing algorithm is called the hash map
What are the parts of PE?
- AMP's
- Parser
- Dispatcher
- Bynet
- Optimiser
Each AMP Corresponds to a particular Vdisk.
- True
- False
NUPI Access is how many AMP Access?
- Multiple
- One
- Two
- All of the above
Features of Primary Key are:
- Unique
- Non Unique
- Null
- Not Null
- All of the above
Which utilities can be used for both Export and Import?
- Fastload
- Multiload
- BTEQ
- TPump
- Teradata warehouse builder
Multiload can load data in populated tables.
- True
- False
Features of Fastload include:
- Can populate Single table
- Can load populated tables
- Tables with SI and referential integrity can be loaded
- Very fast if target table is empty
- Table loaded can be accesed while fastload runs.
A column of a table is declared as NUMBER(10,2).For which of the following values oracle returns an error during insertion
- 5392845.324
- 871039453.1
- 97234512.123
- 1234567.12
Error capturing is done by these utilities:
- BTEQ
- FASTLOAD
- MULTILOAD
- FASTEXPORT
- TPUMP
Multiload works in how many phases?
- 2
- 3
- 5
- 1
Sub query cannot have which clause defined for it
- having clause
- where clause
- order by clause
- group by clause
All DML's are supported by which utility?
- Mload
- Fload
- Bteq
- Tpump
Select length(-1) from dual What is the output of the above sql stmt
- 0
- 1
- 2
- error
conditional logic can be applied in which utilitiy?
- BTEQ
- FASTLOAD
- MULTILOAD
- TPUMP
If there are frequent updates in tables, then which utility to use?
- BTEQ
- TPUMP
- FASTEXPORT
- MULTILOAD
The standard EMP table contains 14 records corresponding to the employess of the corporation.One of those records has a NULL value stored in the MGR column.If Issue the following command on the table:select count(mgr) from emp;which of the following choice indentifies the result oracle will return
- <14
- >14
- 14
- 0