Home > Database > navicat > body text

How to solve the 1449 error when deleting a user in navicat

爱喝马黛茶的安东尼
Release: 2019-08-17 14:20:16
Original
7483 people have browsed it

How to solve the 1449 error when deleting a user in navicat

Related recommendations: "Navicat for mysql graphic tutorial"

1449 exception occurs when connecting to MySQL

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

Permission problem, grant all sql permissions to root;

mysql> grant all privileges on *.* to root@"%" identified by ".";
SQLException: The user specified as a definer ('ebook'@'%') does not exist:
Copy after login

Solution:

grant all privileges on *.* to ebook@"%" identified by ".";
Query OK, 0 rows affected (0.00 sec)
Copy after login
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
#Mysql
Copy after login

The above is the detailed content of How to solve the 1449 error when deleting a user in navicat. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template