Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Indexes What does this mean and how can I fix it?

share|improve this question
Is it telling you the records are basically duplicates? – Dean Barnes Mar 31 '11 at 21:14
No, it is saying the indexes are identical and having both of them serves no purpose. It has nothing to do with records (unless you are referring to records within the index table, of course). @thkala has the right answer. – Brian Hooper Mar 31 '11 at 21:16

3 Answers

up vote 9 down vote accepted

You have two separate indexes on the same field of your table (id). One of them is implied by having set id as a PRIMARY KEY, the other you probably created explicitly. Only one of them is needed - having both of them may result in performance drop due to the additional index updates.

Just drop one of them to resolve this issue.

EDIT:

Perhaps I should explain this a bit more:

Having a PRIMARY KEY or UNIQUE constraint on a column (or field, if you wish) of a table essentially means that for each row inserted, the value of that column should be unique and therefore it should not already exist in the table. The naive approach would be to read all existing rows before inserting, but that would make the DB very slow once a number of rows has been inserted.

In order to deal with this, most (all?) decent database engines will implicitly create indexes for such fields, so that they can quickly detect if a value already exists in the table, without having to scan all its rows.

As a result, manually creating indexes on fields declared PRIMARY KEY or UNIQUE not only is redudant, but it may also cause performance loss due to the duplication of the work needed to maintain the indexes.

share|improve this answer
So how do I fix it? I'm still a bit new with mySQL. – Tyler Crompton Mar 31 '11 at 21:16
@Tyler Crompton Try clicking the 'X' icon next to the index you wish to delete. – Dan J Mar 31 '11 at 21:18
@djacobson, I thought about that. But if I delete my manually created field, how does PRIMARY KEY keep track of records? – Tyler Crompton Mar 31 '11 at 21:21
@Tyler Crompton: just having a PRIMARY KEY implicitly creates an index on many SQL engines - you do not have to create it on you own. – thkala Mar 31 '11 at 21:23
@Tyler Crompton I think you're confusing separate concepts: an Index and a Primary Key are not the same thing. However, MySQL creates an index by default when you specify a primary key, because it generally makes sense to index a field that will often be referenced. – Dan J Mar 31 '11 at 21:24
show 2 more comments

It looks to me that it's saying both of these indices have the exact same properties and just have different Keynames, having two indices will create extra storage space as well as run-time to inserts (there is no reason to do this that I can think of) more detail on the topic can be found here:

http://dev.mysql.com/doc/refman/5.0/en/mysql-indexes.html

http://dev.mysql.com/doc/refman/5.0/en/create-index.html

the PRIMARY one is created by phpMyAdmin I believe and it appears the index one was created manually, but is a duplication of work.

share|improve this answer

When I create a table like this:

CREATE TABLE TAG (ID SERIAL PRIMARY KEY,
                  MODIFIED_AT TIMESTAMP,
                  CREATED_AT TIMESTAMP, 
                  NAME_DE VARCHAR(255),
                  NAME_EN VARCHAR(255),
                  DESCRIPTION_DE VARCHAR(10000),
                  DESCRIPTION_EN VARCHAR(10000),
                  TAGTYPE SMALLINT UNSIGNED NOT NULL,
                  INDEX INDEX_NAME_DE(NAME_DE),
                  INDEX INDEX_NAME_EN(NAME_EN)) ENGINE=INNODB;

Why will it create two indices?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.