标签:root param 执行 ram parameter user 操作 执行存储过程 grant
执行存储过程时,出现如下错误,一般都是因为调用用户没有对应操作权限导致.Parameter number 1 is not an OUT parameter
检查用户对应权限
show grants for username@
%
;
如果没有对应 execute,alter routine,create routine权限,请root用户登录进行授权操作.
授权:
grants execute ,alter routine,create routine to username@
%
;
flush privileges;
标签:root param 执行 ram parameter user 操作 执行存储过程 grant
原文地址:https://blog.51cto.com/8026776/2447824