mysql 常见错误解决方式

mysql 1449 : The user specified as a definer ('root'@'%') does not existmysql

    分析:sql

        通常是因为root用户对全局host无访问权限。所以只要给root用户添加一个访问权限便可。数据库

    解决方式:安全

        grant all privileges on *.* to root@"%" identified by ".";ide

        flush privileges;阿里云

    参考:spa

        http://bbs.csdn.net/topics/390339729.net

        扩展:orm

            阿里云数据库访问存储/视图时出现"mysql 1449"错误,解决方式,ci

                1.使用阿里云自带的图形化界面访问数据库.

                2.编辑视图/存储过程

                3.设置安全性为INVOKER

                4.从新保存

相关文章
相关标签/搜索