MySQL Forums
Forum List  »  Partitioning

Re: How to partition my table
Posted by: Aftab Khan
Date: March 19, 2009 05:34AM

>Now if I partition it with alter table say P1 will hold ID from 1 to 1000, P2 1001 to 2000 and so on.

How many rows do you have in `Employee` table? if you have e.g. 10000000, in this case you need 10000 partitions.

lets do some tests

CREATE TABLE Employees (
EmpID INT NOT NULL,
....
)
PARTITION BY KEY()
PARTITIONS 4;

Load data into this table...

>Now should the query be same or I have to rewrite it as
yes your query will remain same

And then verify the partition used
EXPLAIN PARTITIONS SELECT * FROM Employees WHERE EmpID=1000;

Options: ReplyQuote


Subject
Views
Written By
Posted
10178
March 15, 2009 09:36AM
4671
March 15, 2009 01:09PM
3946
March 17, 2009 10:35PM
3557
March 18, 2009 12:16AM
3389
March 18, 2009 09:12PM
3376
March 18, 2009 10:19PM
3711
March 19, 2009 05:18AM
Re: How to partition my table
3652
March 19, 2009 05:34AM
3369
April 06, 2009 08:08AM
3864
April 07, 2009 09:44PM
2708
April 08, 2009 08:00AM


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.