Scope:
This post explains the easy steps to remove the Plugabble database from RAC Container database.
Steps:
Remove the Dynamic PDB services
Close all PDB instances
This post explains the easy steps to remove the Plugabble database from RAC Container database.
|
- Remove the Dynamic PDB services.
- Close all PDB instances.
- Drop the pluggable database.
Remove the Dynamic PDB services
$srvctl remove service -db <Contaner Database Name> -service <Service_Name>.
Close all PDB instances
Login to SQL container database and close all PDB instances
$ sqlplus "/ as sysdba"
SQL> alter pluggable database <PDB_name> close instance=ALL;
Drop the pluggable database
Login to SQL container database and run drop command with/without including datafiles.
$ sqlplus "/ as sysdba"
SQL> drop pluggable database <PDB_name> including Datafiles;
No comments:
Post a Comment