An extent is a contiguous area of a data file. When a data file is first created, it has one extent of the size you specified for the original file size. If the data file has to expand, another extent is created, which is probably not contiguous with the original file. Having multiple extents in a data file can negatively impact performance. The extent size is the amount of space on the disk that will be allocated when a new extent is created - so each time your datafile extends its size will increase by the extent size.
A 'datafile' is an O/S file you add to a tablespace.
An 'extent' is the size of each chunk (initial/next) you allocate in your create table command. The first extent is defined by the 'initial' parameter in the create table command, the second extent added to the table is defined by the 'next' parameter, thereafter Oracle allocates last-extent-added*pctincrease for every other extent added to the table.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.