目的 线上一张表的字段长度变更 `sGuid` varchar(255) DEFAULT NULL COMMENT 'sGuid' => `sGuid` varchar(512) DEFAULT NULL COMMENT 'sGuid' 方法 pt-online-schema-change --user=xxxx--password=xxxxxx --host= \ --charset=utf8mb4 D=db_main,t=tb_main \ --alter "modify sGuid…
项目中代码红线报版本不支持xx语法,只需要将java版本设置为当前机器使用的java版本即可 这里我使用的是idea自带的maven,如果是自己安装的maven需要在 home directory 处指定maven路径, 如果是自己安装的maven,也需要在下面两处指定maven的配置文件和仓库路径(必须确保修改过settings.xml的配置  必须确保配置文件和仓库都确实存在,否则会出现pom.xml报红线  maven无法导入jar包的问题) 如果是用idea自己的maven,那就选择好需…
主从报错1205 Slave SQL thread retried transaction 10 time(s) in vain, giving up. Consider raising the value of the slave_transaction_retries variable Last_Errno: 1205Last_Error: Slave SQL thread retried transaction 10 time(s) in vain, giving up. Consider…
安装hue时,make apps 编译报错 :"Error: must have python development packages for 2.6 or 2.7. Could not find Python.h. Please install python2.6-devel or python2.7-devel". Stop. 原因:排查最终原因是,python等某些依赖未安装/未安装好.   依赖未安装的原因,是配置了本地yum源. 解决方法: 可能是本地yum源配置的原因,…
mysql执行update报错 update library set status=true where 1=1 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Queries and…
mysql执行update报错 Err] 1055 - 'information_schema.PROFILING.SEQ' isn't in GROUP BY 今天开发的同事发来如下错误信息,最最简单的一个update操作,竟然报了[Err] 1055 - 'information_schema.PROFILING.SEQ' isn't in GROUP BY.具体sql语句为: [SQL]UPDATE draw_record SET open_price = '6945.98', buy_p…
安装ROS时sudo rosdep init指令报错: ERROR: cannot download default sources list from: https://raw.githubusercontent.com/ros/rosdistro/master/rosdep/sources.list.d/20-default.list Website may be down. 解决(以下方法依次执行,一直到搞定: (1)之前曾经安装过 ROS 系统的某个版本,按照提示删除已经存在的初始化文件…
今天依照规范写了一个接口测试脚本,再执行的时候报Error -27225,核对了接口字段和字段值没发现错误,百度搜Error -27225错误没有相关解释.这个问题经过溯源找到了问题的所在,为了互帮互助,方便同行,特记录一下这个问题的根源及解决过程. 工作中报文体.报文头是分开的,所以在web_submit_data()函数中分了两部分,两部分的报文是在生产粘贴过来放到web_submit_data()中的.问题就出在复制粘贴这里.有一段代码是Value=<?xml..........,复制粘贴…
Mysql update in报错 解决方案: [Err] 1093 - You can't specify target table 'company_info' for update in FROM clause 意思是不能在同一语句中更新select出的同一张表元组的属性值 解决方法:将select出的结果通过中间表再select一遍即可. 错误sql: update company_info set email = 'ttt@163.com' ) 修改后可执行的sql: update c…
dotnetcore ef 调用多个数据库时用户命令执行操作报错 1.多个DbContext 时报错: 报错: More than one DbContext was found. Specify which one to use. Use the '-Context' parameter for PowerShell commands and the '--context' parameter for dotnet commands. 解决办法: dotnet ef migrations ad…