Clone a pluggable database for existing PDB, clone the PDB within the same CDB, Cloning Pluggable Databases - Oracle
Clone a pluggable database for existing PDB, clone the PDB within the same CDB, Cloning Pluggable Databases - Oracle
• Set the file dest location:
ALTER SYSTEM
SET DB_CREATE_FILE_DEST = '+DATA';
•
Execute the script to clone:
create
pluggable database RFINUAT from FINUAT3;
• Now make the existing PDB ( FINUAT3) from read only to read write:
SQL>
alter session set CONTAINER=FINUAT3;
SQL>
shutdown immediate;
Pluggable
Database closed.
SQL>
startup
Pluggable
Database opened.
• start the new cloned PDB( RFINUAT)
SQL>
alter session set container=RFINUAT;
Session
altered.
SQL>
startup
Pluggable
Database opened.
•
Where can I
find Alert log in pluggable Database
A Single copy of Alert log is generated which contains
warnings and alert information for all PDBs.
XML version of alert can be found in "Diag Alert"
and text formatted Alert log can be found in "Diag Trace" of the
container database.
•
Where can I find trace files in pluggable Database
All traces generated from all PDBs are currently found in
"Diag Trace" of the container database.
Some more articles you
might also be interested in :-
Comments
Post a Comment