摘要:
侯志清-江西南昌 python 自动监控表空间,并自动添加数据文件 #!/usr/bin/python import os import time import linecache # 定义记录日志文件 def rlog(log): LTIME=time.strftime('%Y-%m-%d %H: 阅读全文
摘要:
##sample 1 https://blog.csdn.net/CCjedweat/article/details/113752818?spm=1001.2101.3001.6650.2&utm_medium=distribute.pc_relevant.none-task-blog-2%7Ede 阅读全文
摘要:
MySQL的一级索引和二级索引介绍 https://blog.csdn.net/weixin_43606861/article/details/116202806 简单来说 一级索引是主键索引,存储数据 二级索引是非主键索引,不存储数据 文章目录 1、一级索引 2、二级索引 3、例子介绍 3.1 主 阅读全文
摘要:
pstack 主要分析mysql hang 的函数, 分析不了锁的情况,比较高深 参考文档 https://blog.csdn.net/n88Lpo/article/details/106484780 https://www.cnblogs.com/nanxiang/p/16012725.html 阅读全文
摘要:
https://blog.csdn.net/weixin_35884854/article/details/113281653 在用Oracle的SQL*PLUS的时候SPOOL真是好用啊.在MySQL中如何实现呢?下面来实验说明 MySQL中可以用tee参数具体实现方式有三种 第一种:tee参数加 阅读全文
摘要:
##https://blog.csdn.net/allway2/article/details/121647193 ##sample 1 使用于50G左右的小库 1.逻辑备份所有的库 mysqldump -u root -p --all-databases > all_databases.sql 2 阅读全文
摘要:
racle Database - Enterprise Edition - Version 10.2.0.1 to 12.2.0.1 [Release 10.2 to 12.2]Information in this document applies to any platform. SYMPTOM 阅读全文
摘要:
########sample 2 APPLIES TO:Oracle Database - Standard Edition - Version 12.2.0.1 and laterInformation in this document applies to any platform.SYMPTO 阅读全文
摘要:
参考文档 https://blog.csdn.net/qq_27917209/article/details/80059629 检查alert日志发现近期大量ORA-1652报错截止上午10:00近2天报错次数为19次Wed Feb 17 01:32:03 2016ORA-1652: unable 阅读全文
摘要:
https://www.jianshu.com/p/25fde93c2fb9 ##section 1表是数据库中存放关系数据的集合,一个数据库里面通常都包含多个表,比如学生的表,班级的表,学校的表,等等。表和表之间通过外键关联。 # 导入SQLite驱动:>>> import sqlite3# 连接 阅读全文