摘要: 0.补丁基础知识 1).补丁发布链接 https://www.oracle.com/security-alerts/ 2)补丁类型 One-off补丁: 定义:解决特定问题的小型补丁,不包含在常规补丁集中。 特点:用于快速修复特定问题,通常针对特定客户需求发布。 应用场景:紧急修复或特殊问题的解决。 阅读全文
posted @ 2024-06-30 11:48 DBer_ablewang 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.设定json文件 set @ddl_filter=' { "filter": { "class": { "name": "general", "event": { "name": "status", "log": { "and": [ { "or": [ {"field": { "name": 阅读全文
posted @ 2024-06-25 15:05 DBer_ablewang 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1.准备机器 #关闭防火墙 systemctl stop firewalld systemctl disable firewalld #关闭selinux #安装依赖 yum -y install unzip yum search libaio yum install libaio #在oracle 阅读全文
posted @ 2024-06-25 14:52 DBer_ablewang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 升级 升级的时候应该先升级replica 如果source使用的语句和依赖的行为在replica上不支持,即使replica已经升级成功也会导致复制出现问题 对5.7和8.0版本可以使用工具util.checkForServerUpgrade()来检查升级需要解决的一些问题,然后依个解决 a) 阅读全文
posted @ 2024-06-25 13:52 DBer_ablewang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. DELETE operation is an expensive operation due to the following reasons: it causes the records to be locked as part of the transaction executing th 阅读全文
posted @ 2024-06-25 13:49 DBer_ablewang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: mysqld-auto.cnf ,持久化配置参数文件(位于DATA目录)(mysqld-auto.cnf 中的变量如果和my.cnf相同则使用mysqld-auto.conf中的) 命令行输入的配置参数 代码中指定配置文件 my.cnf中的配置参数 命令行输入配置文件 my.cnf中的配置参数 /e 阅读全文
posted @ 2024-06-25 13:48 DBer_ablewang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 乐观备份可以用来提升备份和恢复体量比较大的数据库(只有少量的表经常变更)的性能。 2)在大型数据库的热备份过程中(例如,以TB为单位),当备份进行时,可能会在服务器上生成巨大的重做日志文件。由于重做日志文件的增长速度快于mysqlbackup处理的速度,因此当mysqlbackup无法赶上重做日志周 阅读全文
posted @ 2024-06-25 13:46 DBer_ablewang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. 官方文档连接 https://dev.mysql.com/doc/refman/8.2/en/innodb-purge-configuration.html 2. 说明 当你用sql语句去删除一行数据的时候,innodb物理上不会立即从数据库中移除一行记录。当innodb丢弃关于这段删除的un 阅读全文
posted @ 2024-06-25 13:43 DBer_ablewang 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1. English Description What is a Cumulative Update? When a group of multiple patches & updates comes out by Microsoft, we call it a Cumulative Update. 阅读全文
posted @ 2024-06-25 13:30 DBer_ablewang 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 只能通过注册表修改 通过修改注册表进行修改HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL15.TACTICALDEV\SQLServerAgent下的ErrorLogFile指标的值就可以修改sql gent的错误日志 阅读全文
posted @ 2024-06-25 13:27 DBer_ablewang 阅读(2) 评论(0) 推荐(0) 编辑