Which two methods can be used to add an Oracle 11g database to a multitenant container database (CDB) as a pluggable database (PDB)?
Which two methods can be used to add an Oracle 11g database to a multitenant container database (CDB) as a pluggable database (PDB)?
There are two primary methods to add an Oracle 11g database to a multitenant container database (CDB) as a pluggable database (PDB). One method involves pre-creating a PDB in the CDB and using Data Pump to load data from a complete database export of the Oracle 11g database into the newly created PDB. Another valid method is upgrading the Oracle 11g database to a 12c non-CDB and then using the DBMS_PDB.DESCRIBE procedure to plug the database as a new PDB into the CDB. These methods ensure proper integration and data continuity during the migration process.
B and D
Isn't A B?
Sorry B, C
Should be B and C. A is not correct because export and import via data pump is the right way to move out data files
Should be B and C. A is not correct because export and import via data pump is the right way to move out data files
B AND ???
C not possible. To use network link the source database must be version is 12.1 or later. B in version 11. D possbile
When operating across a network link, Data Pump requires that the source and target databases differ by no more than two versions. For example, if one database is Oracle Database 12c, then the other database must be 12c, 11g, or 10g. Note that Data Pump checks only the major version number (for example, 10g,11g, 12c), not specific release numbers (for example, 12.1,10.1, 10.2, 11.1, or 11.2).
BD correct Network link dont support parallel https://docs.oracle.com/database/121/SUTIL/GUID-0871E56B-07EB-43B3-91DA-D1F457CF6182.htm#SUTIL919
pls forget this
There are two B. B. Use the CREATE DATABASE ... ENABLE PLUGGABLE statement to create a PDB by copying data files from PDB$SEED and use data pump to load data from the Oracle 11g database into the newly DATABASE created PDB. and B. Pre-create a PDB in CDB and use data pump to load data from the complete database export of the Oracle 11g database into the newly created PDB.