Error code: 1728 Cannot load from mysql. proc. The table is probably uploaded upted, 1728mysql. proc

Source: Internet
Author: User

Error code: 1728 Cannot load from mysql. proc. The table is probably uploaded upted, 1728mysql. proc
Error code: 1728 Cannot load from mysql. proc. The table is probably uploaded upted

Http://bugs.mysql.com/bug.php? Id = 50183
The reason is that mysql. proc causes 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 '',


We only need to change the table proc column comment to the text type.

Alter table 'proc'
Modify column 'comment' text character set utf8 COLLATE utf8_bin not null;

Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.