zoukankan      html  css  js  c++  java
  • Parse CPU to Parse Elapsd% >100%

    SQL> select round(cpu.value / elapsed.value * 100, 2) "Parse CPU to Parse Elapsd %:"
      2    from v$sysstat cpu, v$sysstat elapsed
      3   where cpu.name = 'parse time cpu'
      4     and elapsed.name = 'parse time elapsed';

    Parse CPU to Parse Elapsd %:
    ----------------------------
                        32955.43

    SQL> select * from v$sysstat where name like '%parse time%';

    STATISTIC# NAME                                CLASS      VALUE    STAT_ID
    ---------- ------------------------------ ---------- ---------- ----------
           336 parse time cpu                         64 4299741367  206905303
           337 parse time elapsed                     64   13047396 1431595225

    parse time cpu

    64

    Total CPU time used for parsing (hard and soft) in 10s of milliseconds

    3

    parse time elapsed

    64

    Total elapsed time for parsing, in 10s of milliseconds. Subtract "parse time cpu" from the this statistic to determine the total waiting time for parse resources

    开了个SR 问Metalink, Metalink 工程师说 这个是计算误差导致的,我要他们详细的官方文档,没得, TNND 忽悠哥哥

  • 相关阅读:
    访问控制模型+强制访问控制
    防火墙体系结构
    信息安全工程师手记
    关于PHPSESSIONID的一些发现
    中级测评师10-物联网
    WAPI学习记录
    1. Jenkins 入门使用
    Springboot druid监控配置
    Springboot 添加数据源报错
    mysql function 查询子级机构
  • 原文地址:https://www.cnblogs.com/hehe520/p/6330584.html
Copyright © 2011-2022 走看看