5 月 05 2024 By 云博小周宇 MySQL–时间戳与时区问题 数据库 对于使用 timestamp 的场景,MySQL 在访问 timestamp 字段时会做时区转换,当 time_zone 设置为 system 时,MySQL 访问每一行的 timestamp 字段时… Read More
5 月 05 2024 By 云博小周宇 MYSQL 版本5.7.24 sql_mode=only_full_group_by问题 数据库 具体出错提示: [Err] 1055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggr… Read More
5 月 05 2024 By 云博小周宇 mysql 带条件的sum/count 使用技巧 数据库 本测试只是简单测试,其用途不在于代替count函数配合where函数进行聚合计算,而是在复杂查询中在sum/count中加入条件,一次性求出不同条件下的聚合结果。 1、插入测试数据如图 2、sum计算… Read More
5 月 05 2024 By 云博小周宇 spring事务管理(xml配置)与spring自带连接数据库JdbcTemplate 数据库 什么是事务,很通俗的话来说就是,我们日常生活中总会出现在银行转账的业务,加入A向B转账100元,此时A的账户中应该减少100元,B的账户中增加100元,但是如果在A转完账B还没有接受的时候,服务器… Read More
5 月 05 2024 By 云博小周宇 spark记录(13)SparkSQL 数据库 1.Shark Shark是基于Spark计算框架之上且兼容Hive语法的SQL执行引擎,由于底层的计算采用了Spark,性能比MapReduce的Hive普遍快2倍以上,当数据全部load在内存的话… Read More
5 月 05 2024 By 云博小周宇 MySQL 实战 数据库 1. 各部门工资最高的员工 创建Employee 表与 Department 表如下所示,编写一个 SQL 查询,找出每个部门工资最高的员工。例如,根据上述给定的表格,Max 在 IT 部门… Read More
5 月 05 2024 By 云博小周宇 Mysql数据库主键,外键,索引概述 数据库 主键: 主键是数据表的唯一索引,比如学生表里有学号和姓名,姓名可能有重名的,但学号确是唯一的,你要从学生表中搜索一条纪录如查找一个人,就只… Read More
5 月 05 2024 By 云博小周宇 MongoDB 简介 数据库 MongoDB 是一个文档数据库,也就是将数据存储为文档格式,文档的格式类似于 Json,如下就被称为一个文档(Document),多个文档可以组成一个集合(Collection) 因此,MongoD… Read More
5 月 05 2024 By 云博小周宇 centos7 安装mysql5.7以及一些细节问题 数据库 突然发现我的新服务器上没有mysql,所以想安装一个,上次在我的window电脑上安装MySQL8.0我真的要气死了,和5.7修改密码的方式不一样… Read More
5 月 05 2024 By 云博小周宇 由ORACLE:ORA-28001: the password has expired(密码过期)引起ODI资料库连接失败 数据库 今天,连接ODI,出现下面的错误 oracle.odi.core.config.WorkRepositoryResourceFailureException: ODI-10182: … Read More
5 月 05 2024 By 云博小周宇 MySQL开源中间件cetus 数据库 git地址: https://github.com/Lede-Inc/cetus/blob/master/doc/cetus-quick-try.md ==介绍 Cetus 简介 Cetus是由C语言… Read More
5 月 05 2024 By 云博小周宇 首次调用SQLiteCursor的getCount 需要锁定数据库 数据库 当我们第一调用android.database.sqlite.SQLiteCursor的getCount()时,当前线程会锁定数据库,在该操作完成后才解锁。 其调用关系如下: at android.d… Read More
5 月 05 2024 By 云博小周宇 mysql5.7.24 gtid双主复制+atlas+keepalived 数据库 一环境介绍: 系统: centos7 [root@mgr01 ~]# cat /etc/hosts 10.0.0.6 pxc01 10.0.0.7 pxc02 [root@pxc02 ~]# cat … Read More
5 月 05 2024 By 云博小周宇 MySQL–批量KILL连接 数据库 ============================================== 使用SELECT INTO OUTFILE方式获取到要删除的连接ID并保存为文件,在通过SOURCE执行 … Read More
5 月 05 2024 By 云博小周宇 java sql SQLException Can not issue data manipulation statem 数据库 1、错误描述 java.sql.SQLException:Can not issue data manipulation statements with executeQuery() 2… Read More
5 月 05 2024 By 云博小周宇 Mysql自动宕机:InnoDB: Cannot allocate memory for the buffer pool 数据库 今天早上上班,发现自己使用wordpress搭建的网站不能访问,报如下错误: Error establishing a database connection 赶紧登到自己阿里云服务器(… Read More
5 月 05 2024 By 云博小周宇 asp.net core 系列 20 EF基于数据模型创建数据库 数据库 原文: asp.net core 系列 20 EF基于数据模型创建数据库 一.概述 本章使用 Entity Framework Core 构建执行基本数据访问的 ASP.NET Core MVC … Read More
5 月 05 2024 By 云博小周宇 MYSQL一次千万级连表查询优化 数据库 概述:交代一下背景,这算是一次项目经验吧,属于公司一个已上线平台的功能,这算是离职人员挖下的坑,随着数据越来越多,原本的SQL查询变得越来越慢,用户体验特别差,因此SQL优化任务交到了我手上。 这个S… Read More
5 月 05 2024 By 云博小周宇 oracle 安装 数据库 groupadd dba groupadd oinstall useradd -g oinstall -G dba oracle passwd oracle mkdir -p /home/oracle… Read More
5 月 05 2024 By 云博小周宇 plsql连接oracle 数据库 需要在工具----选项 1. orcacle 主目录 :G:\PLSQL Developer 11.0.0.1762 中文绿色注册版… Read More