convert range partition table to interval partition for automatic partitioning
This is the DDL of the existing range partition table, where the table is partitioned by column LAST_UPDT_TS and the partitions are manually created every month.
Trying to convert this to interval partitioned table so that the partitions will be created automatically
CREATE TABLE ODS.SALES_TRANSACTION_TAX
(
CHAIN_NBR NUMBER(10) NOT NULL,
STORE_NBR NUMBER(10) NOT NULL,
REGISTER_NBR NUMBER(10) NOT NULL,
TRANSACTION_NBR NUMBER(10) NOT NULL,
TRANSACTION_DT DATE NOT NULL,
TRANSACTION_TM VARCHAR2(10 BYTE) NOT NULL,
TAX_LINE_NBR NUMBER(10) NOT NULL,
TAX_LEVEL_NBR NUMBER(10) NOT NULL,
TAX_CATEGORY_NBR NUMBER(10) NOT NULL,
RECORD_SEQ_NBR NUMBER(10) NOT NULL,