码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-06-05 15:53:14      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:bsp   ble   原因   rac   ack   tab   code   bin   tracking   

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

标签:bsp   ble   原因   rac   ack   tab   code   bin   tracking   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!