To alter an existing partitioned table into a regular one, use the ALTER TABLE statement.
ALTER {TABLE | CLASS} <table_name>
REMOVE PARTITIONING
The following example shows how to alter the partitioned table of name "nation2" into a regular one.
ALTER TABLE nation2 REMOVE PARTITIONING;