Setting max size of each Oracle Pluggable Database Inside same Cdb -- For capacity management
We had requirement where we want to assign maxsize for each Pdb for capacity planning whenw e had multiple Pdb iniside Same Cdb . Luckily Oracle Doc ID 2166477.1 came to rescue with below Steps Default of MAX_PDB_STORAGE is no limit. Run following sql in current PDB to limit the size of all datafiles of that PDB: ALTER PLUGGABLE DATABASE STORAGE (MAXSIZE <MAXSIZE>); To verify the setting, run below in current PDB: select PROPERTY_VALUE FROM database_properties WHERE property_name = 'MAX_PDB_STORAGE'; To check every PDB's setting, run below in CDB: select PROPERTY_NAME,PROPERTY_VALUE,DESCRIPTION,CON_ID FROM cdb_properties WHERE property_name = 'MAX_PDB_STORAGE'; The storage limits for PDBs (like MAX_PDB_STORAGE and MAX_SHARED_TEMP_SIZE) are also stored in CDB_PROPERTIES. SELECT name, total_size, NVL(property_value, 'UNLIMITED') AS "MAX_SIZE" FROM...