Bigfile Tablespace Defaults in Oracle Database 23ai/26ai
Bigfile tablespaces were introduced in Oracle 10g. In Oracle database 23ai/26ai bigfile tablespaces are the default.
oracle 23configurationintermediate
by OracleDba
22 views
Bigfile tablespaces were introduced in Oracle 10g. In Oracle database 23ai/26ai bigfile tablespaces are the default.
12345678910111213141516171819202122232425262728293031
conn / as sysdba
select tablespace_name, bigfile
from dba_tablespaces
order by 1;
TABLESPACE_NAME BIG
------------------------------ ---
SYSAUX YES
SYSTEM YES
TEMP NO
UNDOTBS1 YES
USERS YES
SQL>
alter session set container=freepdb1;
select tablespace_name, bigfile
from dba_tablespaces
order by 1;
TABLESPACE_NAME BIG
------------------------------ ---
SYSAUX YES
SYSTEM YES
TEMP NO
UNDOTBS1 YES
USERS NO
SQL>12345678910111213141516
create tablespace new_ts datafile size 2g;
select tablespace_name, bigfile
from dba_tablespaces
order by 1;
TABLESPACE_NAME BIG
------------------------------ ---
NEW_TS YES
SYSAUX YES
SYSTEM YES
TEMP NO
UNDOTBS1 YES
USERS NO
SQL>1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
conn / as sysdba
select tablespace_name, bigfile
from dba_tablespaces
order by 1;
TABLESPACE_NAME BIG
------------------------------ ---
SYSAUX NO
SYSTEM NO
TEMP NO
UNDOTBS1 NO
USERS NO
SQL>
alter session set container=pdb1;
select tablespace_name, bigfile
from dba_tablespaces
order by 1;
TABLESPACE_NAME BIG
------------------------------ ---
SYSAUX NO
SYSTEM NO
TEMP NO
UNDOTBS1 NO
USERS NO
6 rows selected.
SQL>
create tablespace new_ts datafile size 2g;
select tablespace_name, bigfile
from dba_tablespaces
order by 1;
TABLESPACE_NAME BIG
------------------------------ ---
NEW_TS NO
SYSAUX NO
SYSTEM NO
TEMP NO
UNDOTBS1 NO
USERS NO
SQL>Please to add comments
No comments yet. Be the first to comment!