This topic describes how to delete the partitions of a partitioned table and change it to a nonpartitioned table without data loss.
Syntax
The ALTER TABLE ... REMOVE PARTITIONING statement is used to delete the partitions of a partitioned table and change it to a nonpartitioned table without data loss.
ALTER TABLE table_name REMOVE PARTITIONINGExamples
Delete all partitions in the
sales_range_list table:ALTER TABLE sales_range_list REMOVE PARTITIONING;