gt; expd… | Oracle Database 12c: Installation and Administration Q207 | CertBase

Oracle Database 12c: Installation and Administration — Question 207

Examine the command to perform a data pump export operation on a source database:

gt; expdp hr/hr DIRECTORY=dumpdir DUMPFILE=emp1.dmp VIEWS_AS_TABLE=emp_dept
On the target database, you execute the data pump import command:
gt; impdp hr/hr DIRECTORY=dumpdir DUMPFILE=emp1.dmp VIEWS_AS_TABLE=emp_dept
Which three statements are true? (Choose three.)

Answer options

Correct answer: A, D, E

Explanation

Statement A is correct because the expdp command exports data that meets the criteria of the EMP_DEPT view's defining query. Statement D is also true, as it indicates that dependent objects are included in the export. Statement E is correct since the impdp command creates the EMP_DEPT view as a table and populates it with the exported data. Statements B and C are incorrect because the impdp command does not create the view and dependent objects, nor does it export all rows from dependent objects.