MySQL Forums
Forum List  »  Partitioning

Re: How to partition my table
Posted by: Maron Vomr@
Date: April 07, 2009 09:44PM

Ok, now lets take the real scenario.

With all your suggestions I am now going to study a little further and implement in in mysql-5.1.30
The purpose is to store proxy logs of around 5000 users :D on daily basis.

So I think date wise partitioning will be ok.
I am planning to create a database with 5 tables :
1. Emp details
2. Record of mail sent to user( i.e., when sent,for which date,etc around 5 fields)
3. proxy1
4. proxy2
5. proxy3

Roughly have this table structure in mind for proxy1/2/3
CREATE TABLE `test` (
`dwtime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
`ip` varchar(15) NOT NULL default '',
`size` float(15,2) unsigned NOT NULL,
`url` text NOT NULL,
`user` varchar(25) NOT NULL default '',
`mime` varchar(25) default NULL,
`extension` varchar(10) NOT NULL default '',
);
Now the issue is what to make the primary key? As dwtime can get duplicated, even the user, even the size too.

Haven't decided the fields. Let me finalize that and then share with you for your suggestions.

Options: ReplyQuote


Subject
Views
Written By
Posted
10155
March 15, 2009 09:36AM
4661
March 15, 2009 01:09PM
3936
March 17, 2009 10:35PM
3545
March 18, 2009 12:16AM
3383
March 18, 2009 09:12PM
3367
March 18, 2009 10:19PM
3701
March 19, 2009 05:18AM
3643
March 19, 2009 05:34AM
3360
April 06, 2009 08:08AM
Re: How to partition my table
3856
April 07, 2009 09:44PM
2699
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.