Hi,

Does not Oracle allow partition on
timestamp with time zone column?

CREATE TABLE test2 ( created timestamp with time zone)
PARTITION BY RANGE (created) ( PARTITION p_others VALUES LESS THAN (MAXVALUE));

ERROR at line 2:
ORA-03001: unimplemented feature

Partition on date or timestamp is OK.

Thanks,