conditional logic can be applied in which utilitiy?
-
BTEQ
-
FASTLOAD
-
MULTILOAD
-
TPUMP
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.
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.