what are the loading options allowed in sqlldr
-
INSERT
-
APPEND
-
REPLACE TRUNCATE
-
DELETE UPDATE
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.