MySQL Workbench cannot load mysql.proc

前端 未结 16 1547
予麋鹿
予麋鹿 2020-12-23 12:50

I am starting to use MySQL Workbench tool especially for data modeling. So, the first I would like to do is reverse engineering of my existing database on web server. But I

16条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-23 13:24

    This probably happens when the changes in schema required different versions of mysql server.

    To fix this, follow the line of codes below:

    mysql_upgrade -uroot -p --force
    
    /usr/bin/mysql_upgrade -uroot -p --force
    

    Complete details of post will find here: Cannot load from mysql.proc. The table is probably corrupted

提交回复
热议问题