摘要:
对于数据库整体的性能问题,AWR的报告是一个非常有用的诊断工具。一般来说,当检测到性能问题时,我们会收集覆盖了发生问题的时间段的AWR报告-但是最好只收集覆盖1个小时时间段的AWR报告-如果时间过长,那么AWR报告就不能很好的反映出问题所在。 还应该收集一份没有性能问题的时间段的AWR报告,作为一个 阅读全文
摘要:
查看sql是否被执行计划绑定select sql_profile,sql_plan_baseline from v$sql where sql_id='xx' declare v_hints sys.sqlprof_attr; cl_sql_text clob; wrong_sql_id varch 阅读全文
摘要:
APPLIES TO: Oracle Database - Enterprise Edition - Version 11.2.0.4 to 11.2.0.4 [Release 11.2]Information in this document applies to any platform. SY 阅读全文
摘要:
1、分批UPDATEDROP TABLE T2;CREATE TABLE T2 AS SELECT OBJECT_NAME FROM DBA_OBJECTS;SELECT * FROM T2;SELECT COUNT(*) FROM T2;DECLARE TYPE RIDARRAY IS TABLE 阅读全文
摘要:
表结构 SQL> desc scott.empName Type Nullable Default Comments EMPNO NUMBER(4) Y ENAME VARCHAR2(10) Y JOB VARCHAR2(9) Y MGR NUMBER(4) Y HIREDATE DATE Y SA 阅读全文
摘要:
# Redis配置文件样例 # Note on units: when memory size is needed, it is possible to specifiy# it in the usual form of 1k 5GB 4M and so forth:## 1k => 1000 by 阅读全文
摘要:
--生成环境,数据文件时常存在高水位,导致不能直接收缩数据文件的大小,释放磁盘空间 create or replace package PKG_TOOL is -- Author : LILEI -- Created : 2019/5/17 8:57:03 -- Purpose : SOME TOO 阅读全文
摘要:
操作系统层面配置: 临时关闭防火墙 systemctl stop firewalld 永久防火墙开机自启动 systemctl disable firewalld 临时打开防火墙 systemctl start firewalld 防火墙开机启动 systemctl enable firewalld 阅读全文