hey guys,
i created a partitioned table where i can name the partitions for each partition as well......
but when i try to query that table is there any means that i can query that named partition explicitly.
ex: i created a table like this
CREATE TABLE orders(id INT, shipdate DATE, …) PARTITION BY RANGE(shipdate) (
PARTITION p1 STARTING MINVALUE,
PARTITION p2 STARTING '4/1/2006',
PARTITION p3 STARTING '10/1/2006'
ENDING ‘12/31/2006' )
I know that when i query on the table, db2 itself will take care of which partition to choose, but i want to make that of my choice...
So how can i query that table on partition p1 or p2 or p3.... ?
if so how....?
can u any one suggest me with the query...
thx in advance
goutam