MySQL Forums
Forum List  »  NDB clusters

Re: Bad performance?
Posted by: Jacob Christensen
Date: December 07, 2004 07:18AM

Sorry about that, it was because i changed som of the names... The table really loks like this:

CREATE TABLE `cologin` (
`id` int(10) unsigned NOT NULL auto_increment,
`k_id` int(4) unsigned NOT NULL default '0',
`user` varchar(32) NOT NULL default '',
`sig` enum('y','n') NOT NULL default 'n',
`unixtimestamp` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `k_id` (`k_id`),
KEY `user` (`user`)
) ENGINE=ndbcluster DEFAULT CHARSET=latin1 AUTO_INCREMENT=392152 ;

I all ways use explain to see if I use indexes, it was the first I look at and it was okay!

Any other ideas?

Options: ReplyQuote


Subject
Views
Written By
Posted
4067
December 06, 2004 06:33PM
2802
December 06, 2004 09:13PM
Re: Bad performance?
2754
December 07, 2004 07:18AM
2571
December 07, 2004 11:58AM
2778
December 07, 2004 01:19PM
3633
December 07, 2004 06:22PM
2667
December 08, 2004 01:33PM
3547
December 08, 2004 02:44PM
2754
December 09, 2004 10:05AM


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.