摘要: \ *Davinci安装 *Version: davinci-assembly_2.11 *安装包下载地址 https://github.com/edp963/davinci/releases/download/v0.1.0/davinci-assembly_2.11-0.1.0-SNAPSHOT- 阅读全文
posted @ 2018-10-17 10:11 xyarn 阅读(7639) 评论(0) 推荐(0) 编辑
摘要: root 用户执行 root 用户执行 $ yum install -y autoconf automake imake libxml2-devel expat-devel cmake gcc gcc-c++ libaio libaio-devel bzr bison ncurses5-devel$ 阅读全文
posted @ 2018-10-12 15:05 xyarn 阅读(350) 评论(0) 推荐(0) 编辑
摘要: oracle 官方给的说法是 C.3.152 SQL*Net more data to client The server process is sending more data/messages to the client. The previous operation to the clien 阅读全文
posted @ 2018-10-11 18:21 xyarn 阅读(821) 评论(0) 推荐(0) 编辑
摘要: SQL> set linesize 10000; SQL> set pagesize 10000; SQL> explain plan for select * from dual; Explained. 之后使用dbms_xplan工具包将生成的执行计划展示出来。 SQL> select * fr 阅读全文
posted @ 2018-10-11 17:08 xyarn 阅读(1809) 评论(0) 推荐(0) 编辑
摘要: 1. 2018-09-26 前7天awr报告(此期间 oracle 使用率为 4,022.34/6,179.76/24=2.71%) 由此看出最显著问题是 log file sync 等待事件,查看后台等待事件伴随着 log file parallel write 等待事件也相对较高,初步判断此数据 阅读全文
posted @ 2018-10-11 14:42 xyarn 阅读(1112) 评论(0) 推荐(0) 编辑
摘要: ORALCE的等待事件有很多,今天在一个数据库的awr报告中发现了一个新的等待事件:Disk file operations I/O,官方解释如下: This event is used to wait for disk file operations (for example, open, clo 阅读全文
posted @ 2018-10-11 14:40 xyarn 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 在Oracle 11g中有一个新特性,为了保护已经缓存在buffer cache的数据,当出现全表扫的查询时会判断该表的大小。如果该表过大,则使用直接路径读(Direct Path Read)来获取数据。避免大量冷数据对Buffer Cache的冲击。为了满足11g的这个新特性,通过直接路径读的方式 阅读全文
posted @ 2018-10-11 11:06 xyarn 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1、log file parallel write 当日志缓存到日志文件时,这是一个主要的等待事件.虽然这个时间的名字中有"并行"(parallel)字样,但即使日志缓存并没有使用并行写,因日志缓存的写出而造成的等待仍然是此等待事件. 我们可以通过v$system_event来了解下某一个阶段内,此 阅读全文
posted @ 2018-10-11 11:04 xyarn 阅读(246) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh #Auto remove and backup listener.log #Author xyarn #Date 2018-7-13 14:38:58 filepath=/app/oracle/diag/tnslsnr/oracledb/listener/trace filename=listener.log zipname=HistoryListener.zip fil... 阅读全文
posted @ 2018-10-08 15:27 xyarn 阅读(692) 评论(0) 推荐(0) 编辑
摘要: 一句话简介: Supervisor通过简单的INI样式配置文件进行配置来提供一个启动,停止和监控程序进程并且当进程终止时,操作系统会立即向Supervisor发出信号重新启动失败进程的一个 C/S 进程管理系统 (摘自官方文档:http://www.supervisord.org/introduct 阅读全文
posted @ 2018-09-12 16:00 xyarn 阅读(248) 评论(0) 推荐(0) 编辑
//https://esofar.github.io/cnblogs-theme-silence/#/guide