Partitioning not working need primary key?
Dear All,
We are trying some partitioning as below.
ALTER TABLE tblreceipt PARTITION BY RANGE (MONTH(receiptDate))
(
PARTITION p1 VALUES LESS THAN (TO_DAYS('2012-10-20')),
PARTITION p2 VALUES LESS THAN (TO_DAYS('2012-10-21')),
PARTITION p3 VALUES LESS THAN (TO_DAYS('2012-10-22'))
);
but end up with this Error Code: 1503
A PRIMARY KEY must include all columns in the table's partitioning function
Subject
Views
Written By
Posted
Partitioning not working need primary key?
4705
October 20, 2012 11:12AM
2325
October 22, 2012 07:14AM
2041
October 22, 2012 11:59AM
2072
October 22, 2012 09:37PM
2131
October 23, 2012 08:36AM
2026
October 23, 2012 09:50AM
2058
October 24, 2012 09:05AM
2050
October 24, 2012 09:26PM
1995
October 25, 2012 09:45PM
7461
October 25, 2012 11:22PM
2032
October 27, 2012 07:21AM
1952
October 27, 2012 12:01PM
1906
October 28, 2012 12:10PM
1988
October 28, 2012 02:12PM
1852
October 29, 2012 06:51PM
2065
November 01, 2012 10:55AM
7300
November 02, 2012 12:37AM
1884
November 03, 2012 10:37AM
1944
November 03, 2012 11:37AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.