Using Oracle managed files I can create my tablespace like this:
CREATE TABLESPACE users;
It will autoextend but as I understand it smallfile datafiles have a maximum size. So I then need to do:
ALTER TABLESPACE users ADD DATAFILE;
ALTER TABLESPACE users ADD DATAFILE;
ALTER TABLESPACE users ADD DATAFILE;
Just wondering if there was a way to get oracle to automatically add another datafile when it tries to autoextend past its largest possible size?