Oracle Data Pump is a powerful tool for migrating databases to Autonomous Database (ADB). The two correct advantages are:
Data Pump can exclude migration of objects like indexes and materialized views that are not needed by Autonomous Database (C):True. Data Pump’s EXCLUDE parameter allows skipping objects like indexes and materialized views during export (e.g., expdp ... EXCLUDE=INDEX,MATERIALIZED_VIEW). In ADB, these objects are often redundantbecause the database automatically creates and manages them based on workload (e.g., auto-indexing). For example, exporting a schema with EXCLUDE=INDEX from an on-premises database reduces migration overhead, as ADB recreates necessary indexes post-import, optimizing for its managed environment. This flexibility minimizes unnecessary data transfer and speeds up the process.
Data Pump is platform-independent - it can migrate Oracle databases running on any platform (D):True. Data Pump uses a platform-agnostic dump file format (.dmp), enabling migration from any Oracle Database (e.g., on Linux, Windows, or Solaris) to ADB in the cloud. For instance, you could export from an Oracle 12c database on AIX, upload the dump to OCI Object Storage, and import it into ADB using DBMS_CLOUD.COPY_DATA, regardless of endianness or OS differences (handled by Data Pump’s conversion). This universality makes it ideal for heterogeneous migrations.
The incorrect options are:
Data Pump is faster to migrate database than using RMAN (A):False. Speed depends on context—RMAN (Recovery Manager) is faster for physical migrations (e.g., restoring backups) of entire databases, especially large ones, due to block-level copying. Data Pump, a logical migration tool, extracts and loads data row-by-row, which can be slower for massive datasets but offers more control (e.g., schema selection). No universal speed advantage exists; it’s workload-specific.
Data Pump creates the tablespaces used by your Autonomous Database (B):False. In ADB, tablespaces are fully managed by Oracle (e.g., DATA tablespace), and Data Pump doesn’t create them. It imports data into existing, pre-allocated storage, ignoring source tablespace definitions. E.g., a source tablespace USERS is mapped to ADB’s default storage, not recreated.
These advantages make Data Pump a versatile, tailored migration solution for ADB.
[Reference:Oracle Cloud Infrastructure Documentation -Migrating with Data Pump, ]