MySQL Forums
Forum List  »  NDB clusters

Re: Duplicate entry '3841' for key 1 in query
Posted by: mikeh
Date: November 14, 2005 02:56AM

This is table structure;

CREATE TABLE `config` (
`config_id` int(11) NOT NULL auto_increment,
`name` varchar(64) NOT NULL default '',
`type` smallint(6) default '0',
`value` varchar(255) default NULL,
`blob_value` blob,
PRIMARY KEY (`config_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=ndbcluster DEFAULT CHARSET=latin1 AUTO_INCREMENT=3841 ;

Keyname Type Cardinality Field
PRIMARY PRIMARY 101 config_id
name UNIQUE 101 name

Can you elaborate on what to look for, and how to fix?

Thanks
mike



Edited 3 time(s). Last edit at 11/14/2005 03:00AM by mikeh.

Options: ReplyQuote


Subject
Views
Written By
Posted
2723
November 02, 2005 08:18AM
1498
November 02, 2005 08:34AM
1525
November 08, 2005 03:22AM
1652
November 08, 2005 09:39PM
Re: Duplicate entry '3841' for key 1 in query
1630
November 14, 2005 02:56AM


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.