I have a table partitioned in DB2 V9.5 with something similar to the following:
CREATE TABLE orders(id INT, shipdate DATE, …)
PARTITION BY RANGE(shipdate)
(
STARTING '1/1/2006' ENDING '12/31/2008'
EVERY 3 MONTHS
);
Once the table is created and data has been loaded, how do I see what partitions exist so they can be detached, dropped, etc?