MySQL Workbench cannot load mysql.proc

前端 未结 16 1553
予麋鹿
予麋鹿 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条回答
  •  萌比男神i
    2020-12-23 13:09

    I am using Centos 6.5 for Server purposes. And Mysql Workbench for ERR Diagram. I got the same error. Answers above did not work for me.

    This answer is based on changing data type for comment column. And works like charm.

    Connect mysql from console.

    use mysql;
    show create table mysql.proc;
    

    Then look for comment column. If it's datatype is char, change to text.

    You can also use any other gui for making changes.

提交回复
热议问题