查看“MySQL Error”的源代码
←
MySQL Error
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
MySQL Error ==== 使用关键字做字段名 ==== 如下面 SQL 中的 condition, 这样会报错,需要加上 "`" 或者可以将所有字段都加上,如: select id, area,`condition`, condition_code from ods.t1 ==== ERROR 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, 函数中需要指定操作: * DETERMINISTIC 确定的 * NO SQL 没有SQl语句 * READS SQL DATA 只是读取数据 (以上支持) * MODIFIES SQL DATA 要修改数据 * CONTAINS SQL 包含了SQL语句 ==== 1261 - Row XX doesn’t contain data for all colums ==== MySQL 报 1261 或 1262 错误主要是由于 sql_mode 严格设置。 * select @@sql_mode 查看目前mode类型 * select @@global.sql_mode 查看全局设置 搜索 sql_mode,将 strict_trans_tables 删除,或者设置为空 sql-mode=“NO_UNSIGNED_SUBTRACTION,NO_ENGINE_SUBSTITUTION” 重启 MySQL 服务 mysql net stop; mysql net start; ==== 2013, Lost connection to MySQL server during query ==== net_read_timeout 和 net_write_timeout:控制一次连接传输数据等待的时间,默认是 30s. * max_allowed_packet: 数据传输中使用了较大的 string filed 或者 blob filed,导致超过了max_allowed_packet * wait_timeout :The number of seconds the server waits for activity on a noninteractive connection before closing it. 如果 MySQL 配置的比应用低,就会出现应用程序中认为一个连接还没有到回收的时间,但是 MySQL 自己判断需要强制回收了 ==== ERROR 1819 ==== Your password does not satisfy the current policy requirements * 0 or LOW 只验证长度 * 1 or MEDIUM 验证长度、数字、大小写、特殊字符 * 2 or STRONG 验证长度、数字、大小写、特殊字符、字典文件 SHOW VARIABLES LIKE 'validate_password%'; {| class="wikitable" |Variable_name |Value |- |validate_password.check_user_name |ON |- |validate_password.dictionary_file | |- |validate_password.length |8 |- |validate_password.mixed_case_count |1 |- |validate_password.number_count |1 |- |validate_password.policy |MEDIUM |- |validate_password.special_char_count |1 |} set global validate_password.policy=0; {| class="wikitable" |Variable_name |Value |- |validate_password.check_user_name |ON |- |validate_password.dictionary_file | |- |validate_password.length |8 |- |validate_password.mixed_case_count |1 |- |validate_password.number_count |1 |- |validate_password.policy |LOW |- |validate_password.special_char_count |1 |} ==== Cannot convert string from utf8mb4 to binary ==== [https://bugs.mysql.com/bug.php?id=110955#:~:text=Description%3A%20Union%20all%20derived%20table%20query%20error%3A%20Warning,others%20This%20problem%20does%20not%20exist%20in%208.0.31. 官方已确认是 8.0.32 中的一个bug,已在 8.0.33 版本中修复。] 对于 8.0.32 版本 show variables LIKE '%optimizer_switch%'; set global optimizer_switch="...,derived_condition_pushdown=off"; 该参数于 8.0.22 版本中引入,默认值为 on,表示外查询块中与派生表相关的条件会推入到派生表中。 相关:优化器处理派生表(derived table)有两种策略: # 将派生表合并到外查询块中 # 将派生表物化为一个临时表 使用优化器开关 derived_merge 来控制优化器选择哪种策略。设置为 on,选择策略 1;设置为 off,选择策略 2。此开关从 5.7.6 版本时引入,默认值为 on。 '''当优化器无法合并时,条件下推到派生表(derived_condition_pushdown=on)可以减少物化数据的行数,加速查询的执行。''' [[分类:Develop]] [[分类:DB]] [[分类:MySQL]]
返回
MySQL Error
。
导航菜单
个人工具
登录
命名空间
页面
讨论
大陆简体
查看
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
目录
文章分类
侧边栏
帮助
工具
链入页面
相关更改
特殊页面
页面信息