Skip to Main Content

Breadcrumb

Question and Answer

Chris Saxon

Thanks for the question, Gyan Bahadur.

Asked: March 27, 2017 - 11:12 am UTC

Last updated: March 27, 2017 - 4:20 pm UTC

Version: 11.2.0.4

Viewed 1000+ times

You Asked

Hi Tom,
For lots of datafiles, tablespace there are different value of extend, and different values of max_size, how to find the max_size and how to make sure weather the value of extend is which one best??


and Chris said...

You can find this information from dba_data_files:

select file_name, tablespace_name, autoextensible, maxbytes, increment_by 
from   dba_data_files;


http://docs.oracle.com/database/122/REFRN/DBA_DATA_FILES.htm#REFRN23049

Is this answer out of date? If it is, please let us know via a Comment