Autonomous Data Guard on Shared Infrastructure enhances ADB availability with standby databases. The two correct actions are:
Switchover (C):A switchover swaps roles between the primary and standby databases in a planned manner, with no data loss (RPO = 0). You initiate this via the OCI console (e.g., “Switchover” button on the primary ADB’s Data Guard section) or API (e.g., oci db autonomous-database switchover). For example, before maintenance on the primary, you switch to the standby in another region (e.g., from us-ashburn-1 to us-phoenix-1), taking ~2minutes (RTO ≈ 2 min). This ensures continuity without downtime, as the standby becomes primary seamlessly.
Failover (D):A failover promotes the standby to primary during an unplanned outage (e.g., primary region failure), also with RPO = 0 due to synchronous replication. Trigger it via the OCI console (e.g., “Failover” on the standby) or API (e.g., oci db autonomous-database failover). For instance, if us-ashburn-1 crashes, the standby in us-phoenix-1 takes over in ~2 minutes, preserving all committed transactions. It’s automatic in some cases (e.g., severe failure), but manual initiation is supported too.
The incorrect options are:
View Apply Lag (A):While relevant in traditional Data Guard (measuring replication delay), Autonomous Data Guard on shared ADB uses synchronous replication (zero lag), and apply lag isn’t a user-actionable metric exposed in the UI—monitoring focuses on role status, not lag.
Reinstate (B):Reinstatement (restoring a failed primary as a standby) isn’t a user action in shared infrastructure. Oracle manages post-failover recovery, and users can’t manually reinstate; a new standby might be provisioned instead.
Change Protection Mode (E):Traditional Data Guard offers modes (e.g., Maximum Availability), but in Autonomous Data Guard on shared infrastructure, the mode is fixed (synchronous, akin to Maximum Availability), and users can’t modify it—control is limited to switchover/failover.
These actions ensure high availability with user-initiated role changes.