workbench 批量导入sql文报错的几点记录

导入:
11:47:11 Restoring D:\project\XXXXXXXX.sql
Running: mysql.exe --defaults-file="c:\users\sam\appdata\local\temp\tmpt6aeix.cnf"  --protocol=tcp --host=192.168.9.28 --user=root --port=3306 --default-character-set=utf8 --comments  < "D:\\project\\天天SRM\\trunk\\04代码管理\\01后台服务端\\tterp\\db\\20190817\\Dump20190817.sql"
ERROR 1231 (42000) at line 2116: Variable 'sql_mode' can't be set to the value of 'NO_AUTO_CREATE_USER'

Operation failed with exitcode 1
11:47:42 Import of D:\project\XXXXXXXX.sql has finished with 1 errors

解决方案:'NO_AUTO_CREATE_USER' 替换为空


11:48:35 Restoring D:\project\XXXXXXXXsql
Running: mysql.exe --defaults-file="c:\users\sam\appdata\local\temp\tmprhklvr.cnf"  --protocol=tcp --host=192.168.9.28 --user=root --port=3306 --default-character-set=utf8 --comments  < "D:\\project\\XXXXXXXX.sql"
ERROR 1418 (HY000) at line 2118: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
Operation failed with exitcode 1
11:49:08 Import of D:\project\XXXXXXXX.sql has finished with 1 errors
解决方案:'locahost' 替换为ip地址

11:43:04 Restoring D:\project\XXXXXXXX.sql
Running: mysql.exe --defaults-file="c:\users\sam\appdata\local\temp\tmprj9etu.cnf"  --protocol=tcp --host=192.168.9.28 --user=root --port=3306 --default-character-set=utf8 --comments  < "D:\\project\\XXXXXXXX.sql"
ERROR 1418 (HY000) at line 5593: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)

Operation failed with exitcode 1
12:00:08 Import of D:\XXXXXXXX.sql has finished with 1 errors

解决方案:function begin  前添加    DETERMINISTIC

你可能感兴趣的:(MYSQL)