mysql知识
文章平均质量分 59
mysql知识
ssy03092919
看这时光如白驹过隙,忽然而矣!
然此身乃草芥,唯有心坚,方主沉浮!
展开
-
mysql5.7.26:[ERR] 1118 - Row size too large (> 8126)
场景复现 在从linux服务器的Mysql库中导出全部表结构后,准备转存到本地windows上。linux的mysql版本是5.7.26,本地是5.7,还是32位的msi程序安装的(以前上学时下载的一直保留到现在 )。 在本地执行全部表结构时,出现[ERR] 1118 ,因为在linux上也出现过这个问题,查看了linux中mysql的my.cnf配置文件,将相应添加的配置添加到本地的my.ini或my-default.ini中,重启后,再次执行脚本错误依旧。 后来搜了网上的大部分方案,都是无法原创 2021-06-28 11:26:48 · 511 阅读 · 0 评论 -
oracle函数转换成mysql函数
情况说明由于项目的数据库要从oracle换成mysql,因此涉及到的函数,需要重新编写以下Oracle函数create or replace function createmaxno(v_notype VARCHAR, v_nolimit VARCHAR,v_pad VARCHAR,v_len integer) return VARCHAR is PRAGMA AUTONOMOUS_TRANSACTION; v_maxno VARCHAR(120); v_val number :原创 2021-04-06 00:52:24 · 1023 阅读 · 0 评论 -
mysql:[Err] 1055 - Expression #1 of ORDER BY clause
出现问题:[Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column ‘information_schema.PROFILING.SEQ’ which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_f原创 2021-04-02 23:31:25 · 834 阅读 · 1 评论 -
Linux安装mysql-5.7.26(一条龙服务)
前期准备:准备安装包,从官网下载:传送门选择如下图:下载的安装包,通过Xftp上传到linux服务器/usr/local开始安装1、卸载系统自带的Mariadb[root@VM-0-17-centos local]# rpm -qa|grep mariadbmariadb-libs-5.5.65-1.el7.x86_64[root@VM-0-17-centos local]# rpm -e --nodeps mariadb-libs-5.5.65-1.el7.x86_642、删除e原创 2021-04-02 22:08:02 · 278 阅读 · 0 评论