Correct Answer: B,C,F
The Oracle Data Pump access driver allows for specific actions with external tables:
* B. Read data from an external table and load it into a table in the database. Data Pump can be used to efficiently transfer data between external tables and internal database tables.
* C. Query data from an external table. The Data Pump access driver supports querying data directly
* from external tables.
* F. Read data from a table in the database and insert it into an external table. The Data Pump can also export data from database tables to external table formats.
Options A, D, and E are incorrect:
* A and D are incorrect as the creation of a directory object is not specific to the Data Pump access driver but is a general external table requirement.
* E is incorrect because DML operations directly on external tables are not supported; they are read-only.