This feature is controlled by _partition_large_extents for tables and _index_partition_large_extents for indexes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | set linesize 210col "Parameter" format a30col "Session Value" format a20col "Instance Value" format a20col "Desc" format a70select a.ksppinm "Parameter", c.ksppstvl "Instance Value", ksppdesc "Desc"from sys.x$ksppi a, sys.x$ksppcv b, sys.x$ksppsv cwhere a.indx = b.indx and a.indx = c.indxand substr(ksppinm,1,1)='_'and a.ksppinm like ('%_partition_large_extents');Parameter Instance Value Desc------------------------------ ---------------- -------------------------------------------------------_partition_large_extents TRUE Enables large extent allocation for partitioned tables _index_partition_large_extents TRUE Enables large extent allocation forpartitioned indices |
The details of the behavior change are available in the below metalink.
Doc ID 1295484.1 — Initial Extent Size of a Partition Changed to 8MB from 64KB After Upgrade to 11.2.0.2 or Later.