Error code:1728 Cannot load from mysql.proc. The table is probably corrupted,1728mysql.proc
Error code:1728 Cannot load from mysql.proc. The table is probably corruptedhttp://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;
版权声明:本文为博主原创文章,未经博主允许不得转载。
本站文章为和通数据库网友分享或者投稿,欢迎任何形式的转载,但请务必注明出处.
同时文章内容如有侵犯了您的权益,请联系QQ:970679559,我们会在尽快处理。