Migrating to Autonomous Database supports multiple methods. The three correct options are:
GoldenGate on-premise installation (A):Oracle GoldenGate (on-prem) replicates data from source databases (e.g., Oracle, MySQL) to ADB, supporting real-time or batch migration. You install GoldenGate on-prem, configure extract/replicat processes (e.g., extracting from an Oracle 19c source), and target an ADB instance using credentials and wallet. For example, it might sync an on-prem ORDERS table to ADB with near-zero latency, ideal for live migrations.
GoldenGate Cloud Service (D):GoldenGate Cloud Service, a managed OCI offering, performs the same replication but runs in the cloud. You provision it via OCI Marketplace, configure it to pull from a source (e.g., on-prem or another cloud), and push to ADB. For instance, it could replicate a SaaS database to ADB for analytics, minimizing on-prem overhead. Both GoldenGate options support initial loads and continuous sync.
Data Pump export/import (E):Data Pump exports data/schemas from a source (e.g., expdp hr/hr schemas=HR directory=DATA_PUMP_DIR) to a dump file, which you upload to OCI Object Storage. Then, import into ADB using DBMS_CLOUD.COPY_DATA (e.g., targeting a HR schema). It’s great for one-time migrations, like moving a 12c database to ADB, with flexibility to exclude objects (e.g., indexes).
The incorrect options are:
RMAN Cross-Platform backup and restore (B):RMAN restores physical backups, but ADB’s managed nature prevents direct RMAN restores—users can’t access the file system. RMAN is used for ADB backups internally by Oracle, not customer migrations.
Data Guard Physical Standby (C):Data Guard creates physical standbys for HA, not migration to ADB. ADB uses Autonomous Data Guard internally, but it’s not a migration tool from external sources.
PDB unplug/plug operation (F):Unplugging/plugging PDBs requires file-level access, unsupported in ADB due to its managed storage. You’d use Data Pump instead for PDB data.
These methods offer robust, flexible migration paths to ADB.