********************* *********************
Select a pluggable database to clone
********************* *********************
SQL> select name,open_mode from v$pdbs order by name;
NAME OPEN_MODE
------------------------------ ----------
PDB$SEED READ ONLY
PDBORCL READ WRITE
PDBORCL1 READ ONLY
PDBORCL2 READ WRITE
SQL> alter pluggable database pdborcl1 close;
Pluggable database altered.
SQL> alter pluggable database pdborcl1 open read only;
Pluggable database altered.
********************* *********************
Lets clone the pluggable database now
********************* *********************
SQL> create pluggable database pdborcl3 from pdborcl1 file_name_convert=('/u01/app/oracle/oradata/orcl/pdborcl1/'
,'/u01/app/oracle/oradata/orcl/pdborcl3/');
Pluggable database created.
SQL> alter pluggable database pdborcl3 open;
Pluggable database altered.
SQL> select name,open_mode from v$pdbs order by name;
NAME OPEN_MODE
------------------------------ ----------
PDB$SEED READ ONLY
PDBORCL READ WRITE
PDBORCL1 READ ONLY
PDBORCL2 READ WRITE
PDBORCL3 READ WRITE
SQL> alter pluggable database pdborcl1 close;
Pluggable database altered.
SQL> alter pluggable database pdborcl1 open;
Pluggable database altered.
SQL> select name,open_mode from v$pdbs order by name;
NAME OPEN_MODE
------------------------------ ----------
PDB$SEED READ ONLY
PDBORCL READ WRITE
PDBORCL1 READ WRITE
PDBORCL2 READ WRITE
PDBORCL3 READ WRITE
************************** **************************
Check this below link on how to drop a pluggable database :
************************** **************************
DROPPING-PLUGGABLE-DATABASE
No comments:
Post a Comment