hi its possible to monitoring the status of the cloning process, or after the copy is completed che for the recovery of the archive? or can only just wait for the end of all process?
Hello, thanks for the videos! Could you please answer me a question? If I have 2 servers differents (A and B) , and I would like to transfer a PDB1 (Server A) to server B. What kind of migration is better performance? 1- Using RMAN (duplicate) 2- CREATE PLUGGABLE DATABASE PDB1_copy FROM PDB1@clone_link;
Hi. It's a different mechanism, so it's not quite the same, but in terms of the outcome it feels similar. Both allow you to clone a running system. The RMAN mechanism does the whole instance. This method just does a pluggable database.
You have to do the CDB, but you can limit the PDBs. oracle-base.com/articles/12c/recovery-manager-rman-database-duplication-enhancements-12cr1#multitenant-considerations PDB clones are done using SQL or DBCA.
Yes I saw your article..Suppose I have Prod in CDB1 & Uat,dev, test pdb in CDB2... In this case, if i need to clone prod data to uat, then i have to use Hot clone only right?? Duplicate database will create an entire CDB which I already have(CDB2 For non prod)
Awesome feature. Thanks a lot Tim for always sharing your knowledge without reservations
hi its possible to monitoring the status of the cloning process, or after the copy is completed che for the recovery of the archive? or can only just wait for the end of all process?
Not really. There is some indication of the process in the alert log, but not a progress indicator in a view, or anything like that.
Hello, thanks for the videos!
Could you please answer me a question?
If I have 2 servers differents (A and B) , and I would like to transfer a PDB1 (Server A) to server B.
What kind of migration is better performance?
1- Using RMAN (duplicate)
2- CREATE PLUGGABLE DATABASE PDB1_copy FROM PDB1@clone_link;
They will be similar. Effectively a hot clone takes a backup and transports it. I typically do this using a PDB clone, as it is logically simipler.
Hello Your videos are greatttt... I have a query .. Is this Hot clone same as we do DUPLICATE DATABASE TO FROM ACTIVE DATABASE ON 11G?
Hi. It's a different mechanism, so it's not quite the same, but in terms of the outcome it feels similar. Both allow you to clone a running system. The RMAN mechanism does the whole instance. This method just does a pluggable database.
Thanks.. Using DUPLICATE DATABASE command, can we duplicate only Pluggable database not the CDB??
You have to do the CDB, but you can limit the PDBs.
oracle-base.com/articles/12c/recovery-manager-rman-database-duplication-enhancements-12cr1#multitenant-considerations
PDB clones are done using SQL or DBCA.
Yes I saw your article..Suppose I have Prod in CDB1 & Uat,dev, test pdb in CDB2... In this case, if i need to clone prod data to uat, then i have to use Hot clone only right?? Duplicate database will create an entire CDB which I already have(CDB2 For non prod)
Yes. Hot clones are how you deal with those.