MySQL Workbench cannot load mysql.proc

前端 未结 16 1584
予麋鹿
予麋鹿 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:10

    This happens due to schema changes required for different server versions.

    mysql_upgrade -uroot -p
    

    will filx the issue.

    Sometimes you require to uninstall server and clean its data directory. And re-install to make a fresh copy of data files.

提交回复
热议问题