首页 > 代码库 > Error code:1728 Cannot load from mysql.proc. The table is probably corrupted
Error code:1728 Cannot load from mysql.proc. The table is probably corrupted
Error code:1728 Cannot load from mysql.proc. The table is probably corrupted
http://bugs.mysql.com/bug.php?
http://bugs.mysql.com/bug.php?
id=50183
原因是mysql.proc 在5.1 comment char(64) -> 5.5 comment text 导致
The difference seen in the mysql.proc table is
5.5
< `comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
---
5.1
> `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT ‘‘,
我们仅仅须要将table proc column comment 改为text类型就能够了
ALTER TABLE `proc`
MODIFY COLUMN `comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL;
Error code:1728 Cannot load from mysql.proc. The table is probably corrupted
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。