我知道它看起来像是重复的,但我发现的解决方案对我来说不行.
我卸载了
mysql 5.1并安装了5.6,并且我想导入previouse导出sql文件.但是在导出文件中有一些功能会导致此错误.
我发现并运行命令:
../bin mysql mysql_upgrade -uroot -p -force
但是如果我不够,只有在升级时才有效,而不是安装.有什么解决方案吗?
谢谢!
编辑:
我从导入文件中删除了函数定义,导入完成.但是如果我想手动重新定义该函数,它会显示相同的错误“无法从mysql.proc加载”.
功能在这里:
DELIMITER $$
CREATE FUNCTION `randStr250`(length int) RETURNS varchar(250) CHARSET utf8
begin
declare s varchar(250);
declare i tinyint;
set s="";
if (length<1 or length>6) then
set s="Parameter should be in range 1-6. Your value was out of this range.";
else
set i=0;
while i
set s=concat(s,sha1(now()));
set i=i+1;
end while;
end if;
return s;
end $$
DELIMITER ;