Manage Oracle 12c Multi Tenant Database
Oracle has modified its architecture by introducing the concept of containers. The main component of this architecture is the CDB container. It is a container which owns the memory structure, the background processes and SYSTEM, SYSAUX tablespaces which are all shareable with other databases which are “plugged” into it. The SGA for the CDB consists of the traditional memory components such as the Buffer cache and Shared pool, DBWR and LGWR processes, which access the SYSTEM, SYAUX and UNDO tablespaces. These ‘plugged-in’ databases are also called PDB databases. While the CDB container stores most of the metadata information, the user data is stored in the user tablespace which is part of the PDB database. This ensures that the system metadata is totally segregated and that the individual tablespaces in the PDB is only visible within the PDB that the tablespace is a part of. Read more details in the articles below. Benefits of Multitenant Databases in Oracle 12c With O...