Multiple choice technology databases

conditional logic can be applied in which utilitiy?

  1. BTEQ

  2. FASTLOAD

  3. MULTILOAD

  4. TPUMP

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

BTEQ supports conditional logic through CASE expressions and WHERE clauses. TPump includes conditional APPLY clauses for row-level logic. MultiLoad supports conditional logic in its APPLY statements with CASE expressions. FASTLOAD is designed strictly for high-speed loading of empty tables and does NOT support conditional logic - it loads all rows without filtering or conditional processing, making it the only incorrect option.

AI explanation

BTEQ, MultiLoad, and TPump all support conditional logic (such as .IF statements in BTEQ, or conditional handling of DML operations), letting the script branch based on runtime conditions. FastLoad, by contrast, is a stripped-down, high-speed utility for loading empty tables and deliberately doesn't support conditional logic or complex DML.