当前位置: 代码迷 >> MySQL >> mysql -for routine错
  详细解决方案

mysql -for routine错

热度:124   发布时间:2016-05-05 16:43:24.0
mysql --------for routine错
调用存储过程时报了下面的错误
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;
  相关解决方案