摘要:
mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_SYS_TABLESPACES WHERE SPACE = 26\G *************************** 1. row *************************** SPACE 阅读全文
摘要:
MYSQL5.7以上才支持 Enable: UPDATE performance_schema.setup_instruments SET ENABLED = 'YES', TIMED = 'YES' WHERE NAME = 'wait/lock/metadata/sql/mdl'; Disabl 阅读全文
摘要:
今天业务需求需要从ORACLE数据库抽取数据库到MYSQL,自己写了个并发抽取玩一下 service层,对数据进行了切分,每50万一组 @Service public class DemoService { @Autowired private JdbcTemplate jdbcTemplate; 阅读全文
摘要:
拼接json,发送给server 钉钉实现告警 #!/bin/bash dbid=1 host_ip='测试' alterFile=/root/error.log alertLineFile=/tmp/alertLine message= if [ ! -f "$alertLineFile" ] | 阅读全文
摘要:
数据库版本为:11.2.0.4 当cursor_sharing为SIMILAR或者FORCE时候,将会导致函数索引失效; 表doc_order_header列有LASTSHIPMENTTIME得函数索引; 当时通过v$session视图发现,过滤条件to_char(h.lastshipmenttim 阅读全文
摘要:
创建新表时报错: ERROR 1118 (42000): Row size too large (> 4030). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 byte 阅读全文
摘要:
执行5分钟还没执行完; explain update ind_shop t1 join (select shop_id,(case when `value`='男装' then 1 when `value`='女装' then 2 when `value`='男女装' then 3 else 0 e 阅读全文
摘要:
v1 (spring boot+layui+security+quartz实现) 管理Oracle数据库账号 收集Oracle数据库信息用来分析及统计 v2版本 (spring boot+layui+security+xxljob实现) 功能:数据库资产管理、用户管理、安装部署 、监控告警 、性能分 阅读全文
摘要:
事故描述: 6月1日,10点40分,出现general error: 1114 The table 'xxx' is full异常报错。 11:05定位问题,发现由于xxx表数据量过大,磁盘对应的ibd文件大小达到2T。 由于文件系统使用的是ext2格式(单个文件大小不能超过2T),所以导致该表对应 阅读全文
摘要:
In single instance environment, when a deadlock happens, it often reports ORA-60, see Document 15476.1 FAQ: Detecting and Resolving Locking Conflicts 阅读全文