当前位置: 代码迷 >> 综合 >> mysql报错解决方式:1449 - The user specified as a definer (‘root‘@‘%‘) does not exist
  详细解决方案

mysql报错解决方式:1449 - The user specified as a definer (‘root‘@‘%‘) does not exist

热度:36   发布时间:2024-02-11 00:10:57.0

创建视图报错:1449-the user specified as a definer(ywsd'0"%" does not exist

从一个数据库数据迁移到本地localhost

程序在调用到数据库的视图时报错,直接在数据库中打开视图时也报错,类似:

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

经查询是权限问题,解决办法:

运行sql:

1、grant all privileges on *.* to 'root'@'%' identified by ".";2、flush privileges;

即可解决!

源地址的解释:

权限问题,授权 给 root  所有sql 权限

1、mysql> grant all privileges on *.* to root@"%" identified by ".";2、Query OK, 0 rows affected (0.00 sec)3、mysql> flush privileges;4、Query OK, 0 rows affected (0.00 sec)

 

 

 

 

  相关解决方案