Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I executed the following command:

ALTER TABLE `mytable` ADD UNIQUE (
`column1` ,
`column2`
);

I got this error message:

#1071 - Specified key was too long; max key length is 767 bytes

Information about column1 and column2:

column1 varchar(20) utf8_general_ci
column2  varchar(500) utf8_general_ci

I think varchar(20) only requires 21 bytes while varchar(500) only requires 501 bytes. So the total bytes are 522, less than 767. So why did I get the error message?

#1071 - Specified key was too long; max key length is 767 bytes
share|improve this question

5 Answers

up vote 34 down vote accepted

767 bytes is the stated prefix limititation for InnoDB tables - its 1,000 bytes long for MyISAM tables.

According to the response to this issue, you can get the key to apply by specifying a subset of the column rather than the entire amount. IE:

ALTER TABLE `mytable` ADD UNIQUE ( column1(15), column2(200) );

Tweak as you need to get the key to apply, but I wonder if it would be worth it to review your data model regarding this entity to see if there's improvements that would allow you to implement the intended business rules without hitting the MySQL limitation.

share|improve this answer
To apply by specifying a subset of the column rather than the entire amount. A good solution. – Steven Nov 29 '09 at 4:14
@OMGPonies: Do you happen to know, if DB2/MSSQL/Oracle have the same limitation on index size? For example HSQL does not have such limitation... – dma_k Nov 10 '11 at 10:18
@dma_k: No experience with DB2, but I haven't experienced the issue for SQL Server or Oracle. – OMG Ponies Nov 10 '11 at 15:03

What character encoding are you using? Some character sets (like UTF-16, et cetera) use more than one byte per character.

share|improve this answer
4  
If it's UTF8, a character can use up to 4 bytes, so that 20 character column is 20 * 4 + 1 bytes, and the 500 char column is 500 * 4 + 2 bytes – Thanatos Nov 29 '09 at 3:46
2  
For what it's worth, i just had the same problem and switching from utf8_general_ci to utf8_unicode_ci solved the problem for me. I do not know why though :( – Andresch Serj Jul 17 '12 at 7:24
3  
For a VARCHAR(256) column with a UNIQUE index, changing collation had no effect for me, like it did for @Andresch. However, reducing the length from 256 to 255 did solve it. I don't understand why, as 767 / max 4 bytes per character would yield a maximum of 191? – Arjan Nov 5 '12 at 14:45
2  
255*3 = 765; 256*3 = 768. It appears your server was asssuming 3 bytes per character, @Arjan – Amber Nov 5 '12 at 16:11
1  
@Greg: You are correct, but this should be elaborated: UTF-8 itself uses 1–4 bytes per code point. MySQL's "character sets" (really encodings) has a character set called "utf8" that is able to encode some of UTF-8, and uses 1–3 bytes per code point, and is incapable of encoding code points outside the BMP. It also includes another character set called "utf8mb4", which uses 1–4 bytes per code point, and is capable of encoding all Unicode code points. (utf8mb4 is UTF-8, utf8 is a weird version of UTF-8.) – Thanatos May 8 at 22:54
show 4 more comments

you could add an column of the md5 of long columns

share|improve this answer
perfect suggestion – cephuo Oct 12 '11 at 14:58
Note that this will not allow you to do range scans over these columns. Prefix lengths on VARCHARs will allow you to keep this trait, while causing possibly spurious matches in the index (and scanning and row lookup to eliminate them) (see the accepted answer). (This is essentially a manually implemented hash index, which sadly MysQL doesn't support with InnoDB tables.) – Thanatos May 8 at 22:58

If anyone is having issues with INNODB / Utf-8 trying to put an UNIQUE index on a VARCHAR(256) field, switch it to VARCHAR(255). It seems 255 is the limitation.

share|improve this answer
Worked for me, thanks! – Philipp Jun 7 at 15:59

problably your problem be resolved by activate mbstring in the php.ini configuration, or there are incompatibilty in you PHP MySQL library and your MySQL server version

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.