A company is migrating its on-premises Oracle database to Cloud SQL for PostgreSQL. The database team wants to minimize downtime during migration. Which approach should they use?
Trap 1: Set up Oracle GoldenGate to replicate to Cloud SQL.
GoldenGate is not directly supported for Cloud SQL PostgreSQL.
Trap 2: Take a physical backup of Oracle and restore to Cloud SQL.
Physical backups are not compatible with Cloud SQL PostgreSQL.
Trap 3: Export the database as a dump file, upload to Cloud Storage, and…
This approach requires application downtime during export and import.
- A
Set up Oracle GoldenGate to replicate to Cloud SQL.
Why wrong: GoldenGate is not directly supported for Cloud SQL PostgreSQL.
- B
Use Database Migration Service for PostgreSQL with continuous migration from Oracle via Homogeneous Migration.
DMS supports minimal downtime via continuous replication.
- C
Take a physical backup of Oracle and restore to Cloud SQL.
Why wrong: Physical backups are not compatible with Cloud SQL PostgreSQL.
- D
Export the database as a dump file, upload to Cloud Storage, and import into Cloud SQL.
Why wrong: This approach requires application downtime during export and import.