MOVE PARTITION
You can run this command to move a partition to a new tablespace. You can move a partition by specifying the partition name or partition value.
You can use ALTER TABLE MOVE PARTITION to move partitions in a partitioned table.
ALTER TABLE range_sales MOVE PARTITION date_202001 TABLESPACE tb1;
ALTER TABLE list_sales MOVE PARTITION FOR ('0') TABLESPACE tb1;
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.