Deal All,
I created a table with partitions and inserted data in tables. I mention tablespace for partitions correctly But i forget to mention tablespace for table. Now i tried to move tablespace for table by using "Alter Table INC_MDK Move Tablespace KOP_PES_D" command. But it shown oracle error
'ORA-14511: cannot perform operation on a partitioned object';
Please revert me if you need any other information for analysis.
My Table creation script
CREATE TABLE INC_MDK
(
INC_MDK_USER_IPN VARCHAR2(7 CHAR),
INC_COD_AKK VARCHAR2(6 CHAR) NOT NULL,
INC_MDK_DATE DATE ,
CONSTRAINT INC_C02 UNIQUE (INC_MDK_USER_IPN) USING INDEX TABLESPACE KOP_PES_I
)
partition BY range
(
INC_MDK_DATE
)
(
partition INC_AVAN VALUES less than ( TO_DATE ('01-09-2000', 'DD-MM-YYYY') ) TABLESPACE KOP_PES_D,
partition INC_0009 VALUES less than ( TO_DATE ('01-10-2000', 'DD-MM-YYYY') ) TABLESPACE KOP_PES_D,
partition INC_APRS values less than (MAXVALUE)
tablespace SOP_PES_D
enable row movement ;