Hi Folks,
I want to create DPSI on orders table's customer_id column having following table definition
CREATE TABLE orders(order_no INT, shipdate DATE,customer_id int)
PARTITION BY RANGE(shipdate)
(
PARTITION q206 STARTING '1/1/2006',
PARTITION q306 STARTING '4/1/2006',
PARTITION q406 STARTING '7/1/2006',
PARTITION q506 STARTING '10/1/2006'
ENDING '12/31/2006'
)
ORGANIZE BY (shipdate)
Do i need to create partitioned table space for the same, if yes what would be the ddl for the same?