alter table <tablename> attach partition P_data_2009Q1 STARTING FROM
('01/01/2009') INCLUSIVE ENDING AT ('03/31/2009') INCLUSIVE from
<tableload>
The goal is to set-up the partition but not actually load any data
into it.
Here is my thought:
alter table <tabname> attach partition P_data_2009Q1 STARTING FROM
('01/01/2009') INCLUSIVE ENDING AT ('03/31/2009') INCLUSIVE in
<tablespace>
-OR- Do I load from an empty table?
Should be all you need. That gives you an empty table.
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Thank you.
> IBM Toronto Lab- Hide quoted text -
>
> - Show quoted text -