You are on page 1of 1

Table Partitioning

Adding a partition

Once you have created a partitioned table, you can add more partitions using the ALTER TABLE
command.

ALTER TABLE SALES1 ADD PARTITION


(PARTITION 'P1550' VALUES LESS THAN TO_DATE ('2016-01-01', 'YYYY-MM-DD'));

Droping a partition
If you want to drop a partition, you can use the below command

ALTER TABLE SALES1 DROP PARTITION P1550;

You might also like