Oracle Database SQL — Question 201

Which two statements are true about external tables? (Choose two.)

Answer options

Correct answer: A, B

Explanation

Answer A is correct as external tables do not support DML operations. Answer B is also correct since external tables can be populated using the CREATE TABLE AS SELECT command. The other options are incorrect because external tables can be accessed through SQL and PL/SQL (C), indexes cannot be created on them (D), and while external tables' actual data is stored externally, their metadata is typically stored in the database (E).