Oracle Tip's & Trick's
limit PDB's to 3 in CDB in Oracle 19c
sqlplus / as sysdba
show parameter max_pdbs
ALTER SYSTEM SET max_pdbs=3 scope=both sid='*';
# the end