MySQL Workbench cannot load mysql.proc

前端 未结 16 1561
予麋鹿
予麋鹿 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 should do the trick:

    mysql_upgrade -uroot -p --force

    You may need to specify the full path for command if mysql it's not in the shell's search path.

    On Debian 6 it should be loaded with:

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

    On Mac's MAMP the default path is:

    /Applications/MAMP/Library/bin/mysql_upgrade -uroot -p --force

    On Windows it'll be where MySQL is installed and contained in the bin subdirectory. By default it should be located at:

    "C:\Program Files\MySQL\MySQL Server\[*CHANGE TO MySQL SERVER*]\bin\mysqladmin" -u root shutdown

    Original resource: How to Resolve MySQL Error Code: 1548 Cannot load from mysql.proc. The table is probably corrupted

提交回复
热议问题