Administrator
|
For CDB, these are not things that too much to worry about on day1.
When you create a CDB you will have sysaux,system,undo,users,temp. (for root) & sysaux,system,undo,users,temp(for pdbseed)
In 19C for instance; there are default sizes for these tablespaces.. For instance for CB root -> SYSTEM tbs size 880MB, SYSAUX tbs size 440MB
Just use DBCA to create the CDB and then monitor it.
It depends..
**For instance if you take lots of CDB level AWR snapshots, then your CDB SYSAUX should be a little larger.. (FacT:The CDB-level snapshot data is stored in the SYSAUX tablespace of a CDB root. The PDB-level snapshot data is stored in the SYSAUX tablespace of a PDB.)
You need to check Oracle database Administrator’s Guide -- Creating and configuring a CDB..
But again.. It depends.. Create a default one and monitor it.
Some other facts & recommendations:
There is a separate SYSAUX and SYSTEM tablespace for the CDB root and for each PDB.
A default temporary tablespace exists for every container in the CDB. Therefore, the CDB root and every PDB, application root, and application PDB has its own default temporary tablespace.
The size of the SYSAUX tablespace is determined by the size of the database components that occupy SYSAUX. You can view a list of these components by querying the V$SYSAUX_OCCUPANTS view. Based on the initial sizes of these components, the SYSAUX tablespace must be at least 400 MB at the time of database creation.
|