Examine the following query output:
You issue the following command to import tables into the HR schema:
$ > IMPDP hr/hr directory = dumpdir dumpfile = hr_new.dmp schemas=hr transform=disable_archive_logging:y
Which statement is true?
A. All database operations performed by the IMPDP command is logged.
B. Only create INDEX and create TABLE statements generated by the import is logged.
C. Only CREATE table and ALTER table statements generated by the import is logged.
D. None of the operations against the master table used by Oracle Data Pump to coordinate its activities is logged.
Explanation:
2.4.4.6Oracle Data Pump No Logging Option for Import
The newTRANSFORM
OptionDISABLE_ARCHIVE_LOGGING
, to theimpdp
Command line causes Oracle data Pump to disable redo logging when loading Data into tables and when creating indexes. It also adds the same option as part of the PL/SQLDBMS_DATAPUMP
Package. With redo logging disabled, the disk space required for redo logs during a Oracle Data Pump import is smaller. However, to ensure recovery from media failure, the DBA should does an RMAN backup after the import completes.
Even with this parameter specified, there are still redo logging for other operations of Oracle Data Pump.This includes allCREATE
andALTER
statements, exceptCREATE INDEX
, and all operations against the master table used by Oracle Data Pump during the import.
https://docs.oracle.com/database/121/NEWFT/chapter12101.htm#NEWFT107
Oracle 12c Ocp-3