SQL> create tablespace test02 datafile 'test02.dbf' size 30m;
Tablespace created.
SQL> alter tablespace test02 add datafile 'test022.dbf' size 30m;
alter tablespace test02 add datafile 'test022.dbf' size 30m
*
ERROR at line 1:
ORA-32771: cannot add file to bigfile tablespace
Help: https://docs.oracle.com/error-help/db/ora-32771/
SQL> CREATE SMALLFILE TABLESPACE test052 DATAFILE SIZE 10M AUTOEXTEND ON NEXT 10M ; Tablespace created. SQL> alter tablespace test05 add datafile 'test055.dbf' size 10m; Tablespace altered. SQL>
