Oracle AI Database 23.26.2 lets you spin up a standby pluggable database (PDB) and its redo logs with a single Data Guard Broker command, eliminating the copy-files-by-hand routine that has long slowed disaster-recovery setups.
Why this matters
Creating a physical standby PDB has required a chain of manual actions: copying every datafile to the standby container, building standby redo logs (SRLs) with explicit ALTER commands, and double-checking the whole configuration. Each step carries a risk of typo, missed file, or mismatched log group, which can delay recovery testing or, in the worst case, break failover. Automating the process cuts those risks and frees DBAs to focus on higher-level tasks.
How standby PDBs were built before
In the multitenant architecture, a primary CDB (container database) hosts one or more PDBs. To protect a PDB, administrators had to:
- Identify and copy each datafile from the primary to the standby host.
- Manually create SRLs that mirror the primary’s redo-log layout.
- Run RMAN restores or duplicate commands to bring the standby in sync.
- Run a series of verification steps to ensure the standby could accept a switchover.
The workflow could span several hours, especially for large PDBs, and any slip could leave the standby unusable.
What the 23.26.2 update does
The latest Oracle AI Database release embeds the required steps into the Data Guard Broker. By issuing a single ADD PLUGGABLE DATABASE statement, the broker:
- Registers the new standby PDB with the primary.
- Copies the necessary datafiles behind the scenes—no RMAN restore or manual file copy needed.
- Generates the appropriate standby redo logs, adding them to the standby CDB automatically.
- Leaves the PDB in READ ONLY mode, ready for a physical standby switchover.
The command used in the test was:
DGMGRL> ADD PLUGGABLE DATABASE 'amol' AT cdb2
SOURCE IS 'amol' AT cdb1
PDBFILENAMECONVERT IS "'/CDB1/','/CDB2/'";
A real-world test
The author created a standby PDB named AMOL on a secondary CDB (cdb2) that mirrored a primary PDB on cdb1. The broker completed the operation instantly. No RMAN restore ran, no manual file copies appeared in the OS logs, and the standby redo log groups showed up in the catalog without any ALTER DATABASE statements.
Opening the PDB switched it to READ ONLY, confirming its physical-standby status. A quick check of the datafiles proved they had been provisioned on the standby side. Redo apply was already running, and the broker reported the configuration ready for a switchover.
Implications for DBAs
The automation reduces the chance of human error and slashes the time from planning to production standby. Teams can now provision standby PDBs in minutes rather than hours, which is especially valuable for environments that spin up new services frequently.
The trade-off is a tighter reliance on the Data Guard Broker’s internal logic. Some DBAs prefer to script each step themselves to retain granular control or to integrate with custom monitoring tools. In complex setups—multiple networks, heterogeneous storage, or non-standard redo layouts—administrators may still need to verify that the broker’s defaults align with their policies.
What to watch next
Oracle has not announced further extensions to this automation, but the move suggests future releases could push more of the multitenant DR workflow into the broker. Watch for:
- Support for additional standby types (e.g., logical standby PDBs).
- Expanded logging that surfaces broker decisions for audit purposes.
- Compatibility checks with third-party backup tools that previously relied on manual RMAN steps.
If your organization runs Oracle AI Database in a high-availability configuration, testing the new command on a non-production CDB is the quickest way to gauge impact.
Takeaway: Oracle AI Database 23.26.2 turns a multi-step, error-prone standby PDB setup into a single-line operation, delivering faster, more reliable disaster recovery for multitenant environments.
