052-50

Which two statements are true about alerts? (Choose two.)
A.Clearing an alert sends the alert to the alert history.
B.Response actions cannot be specified with server-generated alerts.
C.The nonthreshold alerts appear in the DBA_OUTSTANDING_ALERTS view.
D.Server-generated alerts notify the problems that cannot be resolved automatically and require administrators to be notified.

  告警有两种,一种是 trace 和 alert 文件,一种是 Server-Generated Alerts
  这道题应该说的是第二种情况
  Server-Generated Alerts 是数据库产生的一种告警,它可能包括解决这个告警的方法,当告警清除后还会生成通知消息,当问题出现或者没有匹配到期望的阈值的时候就会自动生成告警,这些阈值都是可以定义的,比如
    1.每秒的物理读
    2.每秒的用户提交
    3.sql 服务响应时间
  一些没有基于阈值的比如
    1.快照太旧
    2.恢复会话挂起
    3.恢复区的使用
A:正确,当告警清除后会从 DBA_OUTSTANDING_ALERTS 删除,并且在 DBA_ALERT_HISTORY 中添加
B:错误,会产生
C:错误,一些没有基于阈值的也会警报
D:正确,发现的问题不会自动处理,需要 DBA 人工干预

原文地址:https://www.cnblogs.com/Babylon/p/7998634.html