跳到主要内容

数据库问题

1.导入数据文件操作

用户在导入数据提供的数据库文件需要注意,直接通过Navicat的导入操作请取消勾选遇到错误继续,和在每个运行中运行多个查询。用户也可以打开sql文件复制运行sql代码,避免数据错误。

2.在新增函数时遇到的错误

快搭鸭数据库中存在主键策略函数FUNC_NEXTID,用户在导入函数代码是会遇到下列错误。

1418 - 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)

此类错误的原因时开启了bin-log需要为该函数创建指定参数,运行以下sql语句解决。

set global log_bin_trust_function_creators=1;