Table of Contents

Oracle Partition - Split

About

How to split actual:

in two.

Syntax

alter table tableName

Oracle Split Table Partition Syntax

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

Documentation / Reference