上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: http://blog.csdn.net/robinson1988/article/details/4904911SQL> select name,parameter1,parameter2,parameter3,wait_class from v$event_name where name in( 'log file sync','log file parallel write');NAME PARAMETER1 PARAMETER2 PARAMETER3 WAIT_CLASS-----------------... 阅读全文
posted @ 2013-04-18 15:23 taowang2016 阅读(264) 评论(0) 推荐(0) 编辑
摘要: http://www.eygle.com/archives/2004/10/statspack14-logfilesync.html当一个用户提交(commits)或者回滚(rollback),session的redo信息需要写出到redo logfile中.用户进程将通知LGWR执行写出操作,LGWR完成任务以后会通知用户进程.这个等待事件就是指用户进程等待LGWR的写完成通知.对于回滚操作,该事件记录从用户发出rollback命令到回滚完成的时间.如果该等待过多,可能说明LGWR的写出效率低下,或者系统提交过于频繁.针对该问题,可以关注:log file parallel write等待事 阅读全文
posted @ 2013-04-18 15:22 taowang2016 阅读(198) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/sopost/archive/2011/02/20/2190048.htmllog file sync(日志文件同步)等待事件具有一个参数:buffer#。在Oracle Database 10g中,这种等待事件位于Commit等待下面。当处理log file sync等待事件时,注意下面的思想: ◎ log file sync 等待时间和事务中指(提交或回滚)相关 ◎ 当进程在log file sync事件上花费大量时间时,这通常表明过多的提交或短事务。常见的原因、诊断和动作 Oracle 在SGA中的日志缓冲区中记录事务和块的改变,这是成为生理 阅读全文
posted @ 2013-04-18 15:17 taowang2016 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 第一步:准备目录以root用户执行:mkdir /backup_rmanchown -R oracle:oinstall /backup_rman#chown -R oracle:oinstall /data_sda5chmod 755 /backup_rman第二步:备份脚本程序的编写切换到oralce,新建一个目录来放rman脚本su - oraclecd ..mkdir rman_shellcd rman_shelltouch rman_backup.shchmod 755 rman_backup.sh以下是rman_backup.sh内容:(手动分配channel只能在run{}中.. 阅读全文
posted @ 2013-03-21 18:05 taowang2016 阅读(762) 评论(0) 推荐(0) 编辑
摘要: 大家在使用find命令中的mtime参数时候,会看到官方的解释如下: -mtime n File's data was last modified n*24 hours ago. See the comments for -atime to understand how rounding affects the interpretation of file modification times. 但是在各种参考的使用方式中有用+号,-号,不带符号的用法,那么这里又有什么区别呢? 注意这里的n,如果n为带有+号的值,意思为删除n天前所有的文... 阅读全文
posted @ 2013-03-21 16:53 taowang2016 阅读(927) 评论(0) 推荐(0) 编辑
摘要: 基础知识:-- 查看目前的给系统等待信息col wait_class for a20select e.wait_class#,e.wait_class,sum(s.total_waits),sum(s.time_waited)from v$event_name e,v$system_event swhere e.name=s.eventgroup by e.wait_class#,e.wait_classorder by e.wait_class#;--和以下视图查询出来结果基本相同select * from v$system_wait_class;等待事件分类:IDLE WAIT:可忽略Ap 阅读全文
posted @ 2013-03-19 10:46 taowang2016 阅读(200) 评论(0) 推荐(0) 编辑
摘要: http://www.xifenfei.com/638.htmlhttp://www.cnblogs.com/mchina/archive/2012/11/27/2782993.html#!/bin/bash#chkconfig: 345 99 10#description:oracle 开机自动运行#*****************方法一(oradb文件使用)**********************# 特点:复杂、功能完善、部署麻烦# 一、使用root用户修改/etc/oratab 文件:# $ vi /etc/oratab# orcl:/u01/oracle:N (ORACLE_SI 阅读全文
posted @ 2013-03-18 11:34 taowang2016 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1.安装好Oracle数据库后: 执行 dbstart和dbshut会提示:[oracle@oracle11g ~]$ dbstartORACLE_HOME_LISTNER is not SET, unable to auto-start Oracle Net ListenerUsage: /u01/app/oracle/oracle/product/10.2.0/db_1/bin/dbstart ORACLE_HOME错误原因是:dbstart和dbshut脚本文件中ORACLE_HOME_LISTNER的设置有问题,分别打开两个文件找到:ORACLE_HOME_LISTNER=$1,修改为 阅读全文
posted @ 2013-03-18 11:27 taowang2016 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 一套关键的系统,由于”_kghdsidx_count”这个参数设置为1,导致了严重的性能问题。从故障现象上看是大量的library cache latch的等待,以及shared pool latch的等待,但是前者的等待时间比后者长得多。在文章中,我提到,在当时我推断,由于”_kghdsidx_count”这个隐含参数设置为1,导致shared pool只有1个subpool,引起了shared pool latch的严重竞争,进而引起了library cache cache的更为严重的竞争,这个竞争的过程如下:1 由于”_kghdsidx_count”=1,使得shared pool la 阅读全文
posted @ 2013-03-14 14:06 taowang2016 阅读(772) 评论(0) 推荐(0) 编辑
摘要: linux下防火墙配置:touch /etc/sysconfig/iptables拷贝如下内容至上面新建文件。# Firewall configuration written by system-config-securitylevel# Manual customization of this file is not recommended.*filter:FORWARD ACCEPT [0:0]:INPUT ACCEPT [0:0]:RH-Firewall-1-INPUT - [0:0]:OUTPUT ACCEPT [0:0]-A INPUT -j RH-Firewall-1-INPUT- 阅读全文
posted @ 2013-03-13 16:06 taowang2016 阅读(152) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页