首页 > 数据库技术 > 详细

Error code:1728 Cannot load from mysql.proc. The table is probably corrupted

时间:2017-06-05 15:30:01      阅读:417      评论:0      收藏:0      [点我收藏+]
Error code:1728 Cannot load from mysql.proc. The table is probably corrupted

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

原文:http://www.cnblogs.com/zsychanpin/p/6944965.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!