MySQL Forums
Forum List  »  Optimizer & Parser

Re: RollOver one table - having 10millin records - Still 100,000 insertion/sec at bottom - Need to delete 30,00,000 records in 1second after every 30 min
Posted by: Ijaz Rashid
Date: June 20, 2006 07:18AM

My create table query is below

CREATE TABLE `group_1sec_1` (
`tagid` mediumint(9) NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
`time` datetime NOT NULL default '0000-00-00 00:00:00',
`quality` smallint(6) NOT NULL default '0',
PRIMARY KEY (`tagid`,`time`),
KEY `I_TagID_Time` USING BTREE (`tagid`,`time`),
KEY `I_Time` USING BTREE (`time`)
ENGINE=MyISAM DEFAULT CHARSET=latin1 |

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: RollOver one table - having 10millin records - Still 100,000 insertion/sec at bottom - Need to delete 30,00,000 records in 1second after every 30 min
2292
June 20, 2006 07:18AM


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.