MySQL Forums
Forum List  »  Partitioning

partioning question
Posted by: asmaa atef
Date: May 23, 2009 05:56AM

Hello every one,
i want to ask about partioning
suppose this create statement
CREATE TABLE members (
firstname VARCHAR(25) NOT NULL,
lastname VARCHAR(25) NOT NULL,
username VARCHAR(16) NOT NULL,
email VARCHAR(35),
joined DATE NOT NULL
)
PARTITION BY RANGE( YEAR(joined) ) (
PARTITION p0 VALUES LESS THAN (1960),
PARTITION p1 VALUES LESS THAN (1970),
PARTITION p2 VALUES LESS THAN (1980),
PARTITION p3 VALUES LESS THAN (1990),
PARTITION p4 VALUES LESS THAN MAXVALUE
);

i want to know what is meant by partition p0 ,p1,...
and if is they repesent a physical storage or what?
and what is the step that precede creating the table to make partioning
i need an answer for this necessary and thanks in advance.
asmaa

Options: ReplyQuote


Subject
Views
Written By
Posted
partioning question
4674
May 23, 2009 05:56AM
2941
May 24, 2009 09:29AM
2996
May 27, 2009 03:17AM
2805
May 27, 2009 09:50AM
2741
May 28, 2009 05:53AM
2360
May 29, 2009 12:36AM
2843
May 29, 2009 08:39AM
2780
May 29, 2009 10:49AM
2701
May 31, 2009 08:10AM
2789
May 31, 2009 12:11PM
2862
June 03, 2009 04:16AM
2804
June 03, 2009 11:20PM


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.