alert.log 小技巧-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502855
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2022-03-26 10:30:43

告警日志大家再熟悉不过了,出了问题或巡检时都要看一看

日常维护中有时需要对其下手
1 如果删除了告警日志会如何?
下次有输出信息时会自动生成新的,比如手工执行alter system switch logfile;一下

2 如果告警日志被锁定是否会更新?
比如vi 着,后台又有新内容的话是看不到的,除非重新加载告警日志,如果vi编辑并保存那么变化内容会丢失

3 如何写入信息到告警日志
exec sys.dbms_system.ksdwrt(2, 'my own message');
-- 1:写入trc
-- 2:写入alert.log
-- 3:同时写入
一般用于调试或跟踪,比如em监控配置了ora-600时触发告警,但是到底配置成功了没有,手工写入一条来测试

tail 着告警日志:另开一窗口


再看刚才的tail窗口
4 如何通过sql查询告警日志
很多人梦寐以求的监控或快速巡检方法

  1. set lin 200 pages 100
  2. col message_text for a100
  3. col riqi for a25
  4. select to_char(originating_timestamp,'yyyy-mm-dd hh24:mi:ss.ssss')riqi, message_text from sys.x$dbgalertext al
  5.         where originating_timestamp >= trunc(sysdate-2)
  6.         and message_text like '%ora-%';


判断告警日志目录下的trc是否太多?

  1. col physical_path for a60

  2. select physical_path,count(0) from x$dbgdirext where physical_file like '%.trc' group by physical_path;

  3. select lpad(' ', lvl, ' ') || logical_file trace_name from x$dbgdirext;


参考:
how to edit, read, and query the alert.log (doc id 1072547.1)
阅读(787) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图