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?
5043
October 20, 2012 11:12AM
2469
October 22, 2012 07:14AM
2169
October 22, 2012 11:59AM
2190
October 22, 2012 09:37PM
2291
October 23, 2012 08:36AM
2172
October 23, 2012 09:50AM
2188
October 24, 2012 09:05AM
2194
October 24, 2012 09:26PM
2155
October 25, 2012 09:45PM
7592
October 25, 2012 11:22PM
2183
October 27, 2012 07:21AM
2104
October 27, 2012 12:01PM
2054
October 28, 2012 12:10PM
2133
October 28, 2012 02:12PM
2005
October 29, 2012 06:51PM
2216
November 01, 2012 10:55AM
7427
November 02, 2012 12:37AM
2016
November 03, 2012 10:37AM
2089
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.