The code to use in creating a tablespace tbs_ext is:
SQL
CREATE TABLESPACE tbs_ext
DATAFILE 'tbs_ext.dat'
SIZE 50M
AUTOEXTEND ON NEXT 10M
MAXSIZE UNLIMITED;
The above CREATE TABLESPACE statement has specified properties is the best choice for the tbs_ext tablespace to store extra inventory information for a transactional type of application with the given data characteristics.
So, The AUTOEXTEND ON NEXT 10M clause and the MAXSIZE UNLIMITED clause ensure that the tablespace will have enough space to store the growing data, while the SIZE 50M clause provides an initial size that is sufficient for the initial data load.