Multiple choice technology databases

what are the loading options allowed in sqlldr

  1. INSERT

  2. APPEND

  3. REPLACE TRUNCATE

  4. DELETE UPDATE

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

SQL*Loader supports INSERT (into empty table), APPEND (to existing table), and REPLACE (which can be combined with TRUNCATE to clear table first). DELETE and UPDATE are not valid SQL*Loader loading methods - SQL*Loader is designed for data loading, not DML operations.