OCP CBT 기출문제 예상문제 487번

다음 문제를 풀어보세요.

You have a non-CDB database named `LEGACYDB` running on Oracle Database 19c. You want to migrate it into a new PDB within an existing CDB, `CDB01`. You have already performed the necessary `DBMS_PDB.CHECK_PLUG_COMPATIBILITY` checks and ensured compatibility. Which sequence of steps is correct to create a new PDB from `LEGACYDB`?

Source Database (LEGACYDB) sql SHUTDOWN IMMEDIATE; STARTUP MOUNT; ALTER DATABASE OPEN READ ONLY; ## Target CDB (CDB01) sql -- Assume CDB01 is open and in READ WRITE mode