I try to find one solution for my problem when create a partition in oracle database 11g. I think partition can't be created on datatype "TIMESTAMP WITH LOCAL TIME ZONE", Is it true?
I find the tread below that talk about this subject: https://community.oracle.com/message/9515330
Anyone know the solution for this problem?
Code Example:
CREATE TABLE "XPTO"
(
"XPTO_DATE" TIMESTAMP (6) WITH LOCAL TIME ZONE
)
STORAGE(BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
TABLESPACE "TABLES"
PARTITION BY RANGE ("XPTO_DATE") INTERVAL (NUMTOYMINTERVAL(1,'MONTH'))
(
PARTITION "P1" VALUES LESS THAN (TIMESTAMP' 2013-01-01 00:00:00')
SEGMENT CREATION DEFERRED
PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255
NOCOMPRESS LOGGING
TABLESPACE "TABLES"
)
SQL Error: ORA-14020 - "this physical attribute may not be specified for a table partition"...