Oracle Partition - Split
About
How to split actual:
in two.
Articles Related
Plugin combo - Component related: Nothing was found.
Syntax
alter table tableName
where:
AT
Specify the new noninclusive (LESS THAN) upper bound for the first of the two new partitions.
Example:
alter table tableName split partition partitionName
at ( to_date( '02-01-2000', 'mm-dd-yyyy' ) )
into ( newPartitionNameBelow, newPartitionNameAbove );
VALUES
Specify the partition values you want to include in the first of the two new partitions. Oracle Database creates the first new partition using the partition value list you specify and creates the second new partition using the remaining partition values from current_partition. Therefore, the value list cannot contain all of the partition values of current_partition, nor can it contain any partition values that do not already exist for current_partition.
Documentation / Reference