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?
sure we can but why should we? Normally there is a reason for a limit. And for the max sizes of the datafiles, we can create a bigfile tablespace that has stretched the filesize limits a bit. This has impact on backup/recovery but since 11gR2 we can have those files backedup in parallel, where the bigfiles are chopped in chunks and distributed over the various channels.
Also, a question what is the largest possible size? Is it the size that is supported by the filesystem, by ASM, by the database or is it the maxsize that is set by the dba?
Ronald.