On my XP workstation with express-C 9.7.2. in am testing/playing with the ADMIN_MOVE_TABLE feature(sample database with one of the simplest tables). Worked well untill I tried table-partitioning. This syntax is not accepted
Code:
CALL SYSPROC.ADMIN_MOVE_TABLE
( CURRENT_SCHEMA
, 'SALES'
, 'TS04_SALES_DAT'
, 'TS04_SALES_IDX'
, 'TS04_SALES_DAT'
, 'REGION , SALES'
, NULL
, "(SALES_DATE) (STARTING '1/1/1900' ENDING '1/1/2100' EVERY 1 YEAR)"
, NULL
, NULL
, 'MOVE'
);
All very basic stuff I am trying to accomplish. Anyone figured it out the right syntax for this?