1Z0-083 · Question #273
Which three are true about upgrading an application in an application container?
The correct answer is A. An application root clone gets created automatically. E. An application name and version number must be specified to upgrade the application. F. After an application upgrade, the application container's PDBs are automatically synchronized. When upgrading an application in an Oracle Multitenant Application Container, A is correct because Oracle automatically creates an Application Root Clone at the start of the upgrade, allowing application PDBs to remain accessible during the process. E is correct because the…
Question
Which three are true about upgrading an application in an application container?
Options
- AAn application root clone gets created automatically.
- BThe upgrade can be performed when connected either to CDB$ROOT or to PDB$SEED.
- CAfter an application upgrade, the application container's PDBs remain synchronized with the
- DThe upgrade must be performed when connected to CDB$ROOT.
- EAn application name and version number must be specified to upgrade the application.
- FAfter an application upgrade, the application container's PDBs are automatically synchronized
How the community answered
(52 responses)- A79% (41)
- B6% (3)
- C4% (2)
- D12% (6)
Explanation
When upgrading an application in an Oracle Multitenant Application Container, A is correct because Oracle automatically creates an Application Root Clone at the start of the upgrade, allowing application PDBs to remain accessible during the process. E is correct because the ALTER PLUGGABLE DATABASE APPLICATION command requires explicitly specifying both the application name and version numbers (BEGIN UPGRADE 'old_version' TO 'new_version'). F is correct because once the upgrade completes in the Application Root, the application PDBs are automatically synchronized with the upgraded application definition when they are next opened or synced.
B and D are wrong for the same reason: the upgrade must be performed while connected to the Application Root (e.g., APP_ROOT), not CDB$ROOT (D is wrong) and not PDB$SEED (B is wrong) - those are CDB-level constructs, not application-level. C is the mirror distractor to F: it implies PDBs stay in their current synchronized state (i.e., no change occurs), which is false - they do receive the upgrade changes via synchronization.
Memory tip: Think "A-E-F = Always Expect a Fresh start" - A clone is created, Explicit name+version is required, and Finally the PDBs sync up. If you're tempted by B or D, remember: you work inside the Application Root, never at the CDB level, for application operations.
Topics
Community Discussion
No community discussion yet for this question.