Which two methods can be used to add an Oracle 11g data…

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)?

A.
Use the d3MS_pdb package to plug the Oracle 11g database into the existing CDB as a PDB.

B.
Use the create database … enable pluggable database statement to create a PDB by copying data files from pd3Sseed and use data pump to load data from the Oracle 11g database into the newly created PDB.

C.
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.

D.
Pre-create a PDB in CDB and use the network_link and parallel parameters with data pump import to import data from the Oracle 11g database to the newly created PDB.

E.
Upgrade the Oracle 11g database to a 12c non-CDB and use the dbms_pdb.describe procedure to plug the database as a new PDB into the CDB.



Leave a Reply 4

Your email address will not be published. Required fields are marked *


WAS

WAS

A wrong
The package DBMS_PDB is not used to PLUG database on PDB.

B wrong
The command ‘create database … enable pluggable database’ is used when in creation of CDB.

C Right
It is possible to use data pump to export and import a database to a PDB (transportable database).

D Right
It is possible to user data pump to transport database using a network_link between databases.

E Wrong
The DBMS_PDB.DESCRIBE procedure is used to make a XML from database, not to plug the database on a PDB.

Then .. CD