
Por Mountebanking Cormorant em 05/10/2023 17:37:50
Para uma instalação Oracle 11g, no mínimo duas tablespaces são necessárias: SYSTEM e SYSAUX.
CORRETO. p/ ver default tablespaces:
SELECT tablespace_name
FROM dba_tablespaces
WHERE contents = 'PERMANENT';
geralmente vai mostrar
SYSTEM e SYSAUX e Users.
A bigfile tablespace contains only one datafile or tempfile, which can contain up to approximately 4 billion ( 232 ) blocks. The maximum size of the single datafile or tempfile is 128 terabytes (TB) for a tablespace with 32 K blocks and 32 TB for a tablespace with 8 K blocks.
https://docs.oracle.com/en/database/oracle/oracle-database/12.2/refrn/physical-database-limits.html#GUID-939CB455-783E-458A-A2E8-81172B990FE9
CORRETO. p/ ver default tablespaces:
SELECT tablespace_name
FROM dba_tablespaces
WHERE contents = 'PERMANENT';
geralmente vai mostrar
SYSTEM e SYSAUX e Users.
A bigfile tablespace contains only one datafile or tempfile, which can contain up to approximately 4 billion ( 232 ) blocks. The maximum size of the single datafile or tempfile is 128 terabytes (TB) for a tablespace with 32 K blocks and 32 TB for a tablespace with 8 K blocks.
https://docs.oracle.com/en/database/oracle/oracle-database/12.2/refrn/physical-database-limits.html#GUID-939CB455-783E-458A-A2E8-81172B990FE9