Teradata Interview Questions
Teradata Interview Questions
2. What is Bynet?
Ans: The BYNET is a high-speed interconnect (network) that enables multiple nodes
in the system to communicate.
3. what is a Node?
Ans: A node is a term for a processing unit under the control of a single operating
system and each node owns a portion of the database. The node is where the
processing occurs for the Teradata RDBMS (A node is a basic building block of a
Teradata system, and contains a large number of hardware and software
components).
4. what is a PE?
Ans: Parsing Engine is a combination of parser and dispatcher. It Communicate with
client -> Manage sessions -> Parse SQL statements -> Communicate with AMPs ->
Return result to the client
5. PDE?
Ans: Parallel Database Extensions (PDE) is an interface layer on the top of operating
system. Its functions include: executing vprocs (virtualprocessors), providing a
parallel environment,
scheduling sessions, debugging, etc
7. What is an AMP?
Ans: Access Module Processor BYNET interface
Manage database
Interface to disk subsystem
10. CLI?
Ans: Call Level Interface, makes parallel access possible. CLI is responsible for
creating and managing the parcels that travel back and forth between Teradata and
the host. It permits the host to send multiple tasks (sessions) to Teradata at the
same time.
11.TDP?
Ans: Teradata Dircetor Program, Route the packets to the specified Teradata RDBMS
server
12. CLIQUE?
Ans: clique is a group of nodes that share access to the same disk arrays.
3. What is OLAP?
Ans: Online Analytical Processing
4. What is OLTP?
Ans: Online Transaction protocol
1. What is a Primary Index? What is the maximum limit of Primary indexes for a
table?
Ans: The Primary index is the Physical Mechanism used to retrieve and distribute
data.
Primary Indexes define the way the data is distributed. Indexes are used to access
rows from a table without having to search the whole table. In the Teradata RDBMS,
an index is made up of one or more columns in a table. upto 64 columns can
defined in an Index. One Primary Index per table.
A Primary Index is the mechanism for assigning a data row to an AMP and a location
on the AMPs disks. It is also used to access rows without having to search the entire
table.
columns for the Primary Key and Primary Index, you can make the Primary Key a USI
to enforce uniqueness on the Primary Key.
^Speeds up access to a row. Accessing a row with a USI requires one or two AMPs,
which is less direct than a UPI (one AMP) access, but more efficient than a full table
scan.
4. What is a Hashmap?
Ans: Hash Map indicate which AMP holds the row.
Triggers: One or more Teradata SQL statements associated with a table and
executed when specified conditions are met. (Use no Perm Space)
Stored Procedures: Combinations of procedural and non-procedural statements run
using a single CALL statement. (Require Perm Space)