MySQL Forums
Forum List  »  Partitioning

Partitioning problem
Posted by: Muthulingam Jayakanthan
Date: August 31, 2008 03:49AM

Following table partioning gives me error

CREATE TABLE mytable(id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,dt DATETIME NOT NULL)
PARTITION BY RANGE (dt)
(
PARTITION p1 VALUES LESS THAN ('2008-08-08 00:00:00'),
PARTITION p2 VALUES LESS THAN ('2008-08-08 02:00:00'),
PARTITION p3 VALUES LESS THAN MAXVALUE
)

Please help me

Options: ReplyQuote


Subject
Views
Written By
Posted
Partitioning problem
5130
August 31, 2008 03:49AM
2455
September 04, 2008 12:19PM
2535
September 06, 2008 01:17PM
2370
October 08, 2008 08:00AM
2251
October 08, 2008 10:56PM


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.