mysql error 1069 Too many keys specified; max 64 keys allowed

匿名 (未验证) 提交于 2019-12-03 08:46:08

问题:

i am trying to run alter table command and i am getting the following error:

#1069 - Too many keys specified; max 64 keys allowed

any help will be highly appreciated

回答1:

According to the mysql forums you must compile with

./configure --prefix=/usr/local/mysql --with-charset=cp1251 --enable-thread-safe-client --with-max-indexes=256

source: http://forums.mysql.com/read.php?22,53666,262189#msg-262189

unfortunately there does not appear to be a way to change after compiling



回答2:

Seems like the message is clear... YOu can't have a table with more than 64 keys (Primary, Foreign or even index)



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!