Interval partitioning using TIMESTAMP WITH TIME ZONE As partitioning key results in ORA-03001: unimplemented feature
(Doc ID 2963107.1)
Last updated on JULY 20, 2024
Applies to:
Oracle Database - Enterprise Edition - Version 19.19.0.0.0 and laterInformation in this document applies to any platform.
Symptoms
create table test
(
a number,
b number,
CREATED_DTS TIMESTAMP(6) WITH TIME ZONE DEFAULT systimestamp NOT NULL)
partition by range(CREATED_DTS)
(partition p1 values less than (TIMESTAMP '2021-06-14 00:00:00 EST'));
partition by range(CREATED_DTS)
*
ERROR at line 6:
ORA-03001: unimplemented feature
Changes
None
Cause
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Symptoms |
Changes |
Cause |
Solution |