MySQL错误:The user specified as a definer (XXX@XXX) does not exist

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL错误:The user specified as a definer (XXX@XXX) does not exist相关的知识,希望对你有一定的参考价值。

今天由于更换服务器,重新再本地备份了数据库,试运行程序报错,如下:

mysql错误:The user specified as a definer ([email protected]) does not exist

意思是某个数据库对象的定义者(也就是[email protected])不存在

原因,原来是导出并恢复数据库时,视图的定义者还是原来的用户,

但是本地数据库并没有对应的这个用户。

解决方法:将视图语句复制一下,替换掉其中的用户信息,也就是(XXX@XXX)标红的地方,然后将原来的视图删除掉,重新生成一下即可。

以上是关于MySQL错误:The user specified as a definer (XXX@XXX) does not exist的主要内容,如果未能解决你的问题,请参考以下文章

[bug] MySQL: The user specified as a definer ('root'@'%') does not exist

mysql The user specified as a definer ('XX'@'%') does not exist

MySQL 报错1449:The user specified as a definer (’mysql.infoschema‘@’localhost‘) does not exist

mysql 1449 : The user specified as a definer ('root'@'%') does not exist 解决方法

mysql的The user specified as a definer (”@’%') does not exist 的解决办法

mysql的“The user specified as a definer (”@’%') does not exist”问题 解决