mysql error 1370解决办法_MySQL
程序员文章站
2024-01-17 21:35:34
...
bitsCN.com
调用存储过程时报了下面的错误
ERROR 1370 (42000): execute command denied to user backupAccount@'localhost' for routine 'databaseName.spName'
解决办法
对该账户授予执行存储过程的权限
mysql> grant execute on procedure databaseName.spName to 'backupAccount'@'localhost';
mysql> flush privileges;
bitsCN.com上一篇: PHP登录状态保存30天解决方案
下一篇: 动态SQL中变量赋值
推荐阅读
-
解决由于操作不当出现的ERROR 1005错误_MySQL
-
MySQL错误:ERROR 1064 (42000): use near 'order’解决
-
MySql5.5忘记root密码的解决办法
-
Linux下mysql找不到mysql.sock文件的解决办法_MySQL
-
Error:Can/'t create/write to file错误_MySQL
-
mysql The server quit without updating PID file异常解决办法
-
InnoDB: Error: log file ./ib_logfile0 is of different size 0_MySQL
-
转载:mysql安装could not start the service mysql error错误_MySQL
-
mysql中RAND()随便查询记录效率问题和解决办法分享_MySQL
-
MySQL server has gone away两种有效的解决办法_MySQL