Adding PDB Resources in Grid Infrastructure
In Oracle Database 21c, within the Grid Infrastructure environment, a new type of resource called ora.pdb.type has been introduced, which can be used to manage PDBs. These resources are named using the following format: ora. < DB Unique Name > . < PDB Name > .pdb Like other resources in the cluster and GI environment, PDB-related resources can be controlled and managed using the srvctl tool. For example, you can start or stop a PDB using this tool: [ grid@RAC3 ~ ]$ srvctl start pdb -db db21c -pdb pdb1 [ grid@RAC3 ~ ]$ srvctl status pdb -db db21c -pdb pdb1 Pluggable database PDB1 is enabled. Pluggable database PDB1 of database db21c is running on nodes: rac2,rac3 [ grid@RAC3 ~ ]$ srvctl stop pdb -db db21c -pdb pdb1 [ grid@RAC3 ~ ]$ srvctl status pdb -db db21c -pdb pdb1 Pluggable database PDB1 is enabled. Pluggable database PDB1 of database db21c is not running. [ oracle@RAC2 ~ ]$ srvctl stop pdb -db db21c -pdb pdb1 -n rac3 -stopoption IMMEDIA...