Performace indicator

Hi...
i am a BW fresher and in my recent interview.. i had faced.. a question.. even i didnt understand properly that .. can u plz... help me out....
" wt is the performace indicator followed.. while designing cube or any ods"( he gave a clue.. for me saying that .. how many dimensions.. should.. this cube contain.. how vil u decide...while designing)...
u plz.. read it.. even i am unable to explain.. properly for u...
ponts fully
assured*
Regards
Rekha

Hi,
Performance indicators are commonly called as Key Performance indicators( KPI ). This are nothing but Key figure infobject in BW. In general these are the value fields used for measuring bussines.
These KPIs are related logically with chara's. where these Chars are used in creating the deimentions. hence while designing the Infocube we need to model the KPIs using these Entites/ Chars. This is called as ERM entity Relationship Model.
While designing ODS object we will use these KPIs as data fields.
Regards,
Vishwa.

Similar Messages

  • Indicator-powersave & throttle

    Thanks to some very useful advice here in the thread and a lot of time on google, this is shaping up into something worthwhile!
    indicator-powersave is a fork of indicator-cpufreq with additional controls for system-wide powersaving. It is not a detailed reporting tool like powertop (see throttle check), but enables more comprehensive powersaving than powertop checks for. It is not as multi-purpose as tlp but should be as effective for anything other than a Thinkpad and with a convenient, user-discretion menu to select options by mouse.
    The front end is an application indicator:
    The backend is a bash script which does it's best to manipulate runtime system settings (sysfs/procfs) rather than modify config files or employ external tools where possible: ENERGY_PERF_BIAS (x86_energy_perf_policy), HDD (hdparm), LAN (ethtool), WLAN (iw), and GPU (nvidia-settings) need optional, external tools. This script works without the indicator.
    /usr/bin/throttle
    #!/bin/bash
    while (( "$#" )); do
    #Find the number of physical cores (for hyperthreading control)
    CORES="$(grep "^core id" /proc/cpuinfo | sort -u | wc -l)"
    case "$1" in
    full|performance|cut|powersave)
    case "$1" in
    full|performance)
    GOVERNOR="performance"
    XPSTURBO="0"
    HYPERTHREADS="1"
    ENERGYPERF="0"
    LAPTOP="0"
    DIRTYWBC="500"
    NMIDOG="0" # Always off
    POLICY="max_performance"
    APM="255"
    AAM="254"
    CONTROL="on"
    AUTOSUSPEND="-1"
    POWERSAVE="0"
    CONTROLLER="N"
    WLPOWERSAVE="off"
    WOLA="g"
    WOLB="enabled"
    LEDBRIGHT="255"
    NVPM="1"
    cut|powersave)
    GOVERNOR="powersave"
    XPSTURBO="1"
    HYPERTHREADS="0"
    ENERGYPERF="15"
    LAPTOP="5"
    DIRTYWBC="1500"
    NMIDOG="0"
    POLICY="min_power"
    APM="1"
    AAM="128"
    CONTROL="auto"
    AUTOSUSPEND="1"
    POWERSAVE="1"
    CONTROLLER="Y"
    WLPOWERSAVE="on"
    WOLA="d"
    WOLB="disabled"
    LEDBRIGHT="0"
    NVPM="0"
    esac
    # CPU Governor
    for i in /sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor; do [[ -f "${i}" ]] && \
    printf "${GOVERNOR}" > "${i}" & done &
    # Disable Intel P-State Turbo
    [[ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]] && \
    printf "${XPSTURBO}" > /sys/devices/system/cpu/intel_pstate/no_turbo &
    # Hyperthreads
    for i in /sys/devices/system/cpu/cpu*/online; do [[ -f "${i}" ]] && \
    [[ "$(printf "${i}" | tr -cd [:digit:])" -ge "${CORES}" ]] && \
    printf "${HYPERTHREADS}" > "${i}" & done &
    wait # for cpus on/off
    # ENERGY_PERF_BIAS
    [[ -n "$(command -v x86_energy_perf_policy)" ]] && \
    x86_energy_perf_policy "${ENERGYPERF}" &
    # Virtual Memory (Swap)
    printf "${LAPTOP}" > /proc/sys/vm/laptop_mode &
    printf "${DIRTYWBC}" > /proc/sys/vm/dirty_writeback_centisecs &
    printf "${DIRTYWBC}" > /proc/sys/vm/dirty_expire_centisecs &
    # NMI watchdog
    [[ -f /proc/sys/kernel/watchdog ]] && \
    printf "${NMIDOG}" > /proc/sys/kernel/watchdog &
    # SATA link power management
    for i in /sys/class/scsi_host/host*/link_power_management_policy; do [[ -f "${i}" ]] && \
    printf "${POLICY}" > "${i}" & done &
    # Hard drives
    [[ -n "$(command -v hdparm)" ]] && \
    hdparm -qB "${APM}" -qM "${AAM}" /dev/[hs]d[a-z] 2> /dev/null &
    # Runtime power management for devices (Example with specific exception for Unifying transceiver)
    for i in /sys/{class/*,bus/*/devices}/*/power/control; do [[ -f "${i}" ]] && [[ \
    -z "$(ls "$(printf "${i}" | sed 's|power.*||g')"/*/ | grep "0003:046D:C52B")" ]] && \
    printf "${CONTROL}" > "${i}" & done &
    # USB Autosuspend (Example with exception for Unifying transceiver)
    for i in /sys/bus/usb/devices/*/power/autosuspend{,_delay_ms}; do [[ -f "${i}" ]] && [[ \
    -z "$(ls "$(printf "${i}" | sed 's|power.*||g')"/*/ | grep "0003:046D:C52B")" ]] && \
    echo "${AUTOSUSPEND}" > "${i}" & done &
    # Powersaving for modules
    for i in /sys/module/*/parameters/power_save; do \
    printf "${POWERSAVE}" > "${i}" & done &
    for i in /sys/module/*/parameters/power_save_controller; do \
    printf "${CONTROLLER}" > "${i}" & done &
    # Network powersaving
    for i in /sys/class/net/wl*; do [[ -d "${i}" ]] && \
    [[ -n "$(command -v iw)" ]] && \
    iw dev "$(printf "${i}" | sed 's/^.*wl/wl/')" set power_save "${WLPOWERSAVE}" 2> /dev/null & done &
    for i in /sys/class/net/e*; do [[ -d "${i}" ]] && \
    [[ -n "$(command -v ethtool)" ]] && \
    ethtool -s "$(printf "${i}" | sed 's/^.*e/e/')" wol "${WOLA}" 2> /dev/null & done &
    for i in /sys/class/net/*/device/power/wakeup; do [[ -f "${i}" ]] && \
    printf "${WOLB}" > "${i}" & done &
    # LEDs
    for i in /sys/class/leds/*/brightness; do [[ -f "${i}" ]] && \
    printf "${LEDBRIGHT}" > "${i}" & done &
    # Nvidia PowerMizer
    [[ -n "$(command -v nvidia-settings)" ]] && \
    DISPLAY=":0.0" nvidia-settings -a [gpu:0]/GPUPowerMizerMode="${NVPM}" > /dev/null &
    wait # Hey, let's stop! :) *stops* ... YAY! =D
    shift
    unset GOVERNOR XPSTURBO HYPERTHREADS ENERGYPERF LAPTOP DIRTYWBC NMIDOG \
    POLICY APM AAM CONTROL AUTOSUSPEND POWERSAVE CONTROLLER \
    WLPOWERSAVE WOLA WOLB LEDBRIGHT NVPM
    gov*)
    case "${1}" in \
    gov-full) GOVERNOR="performance" ;; \
    gov-cut) GOVERNOR="powersave" ;; esac
    [[ -z "${GOVERNOR}" ]] && \
    case "${2}" in \
    full|performance) GOVERNOR="performance"; SHIFT="2" ;; \
    cut|powersave) GOVERNOR="powersave"; SHIFT="2" ;; esac
    [[ -z "${GOVERNOR}" ]] && \
    printf "${0} gov {cut,full} - CPU Governor\n" || \
    for i in /sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor; do [[ -f "${i}" ]] && \
    printf "${GOVERNOR}" > ${i} & done &
    [[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
    wait
    unset GOVERNOR SHIFT
    turbo*)
    case "${1}" in \
    turbo-on) XPSTURBO="0" ;; \
    turbo-off) XPSTURBO="1" ;; esac
    [[ -z "${XPSTURBO}" ]] && \
    case "${2}" in \
    on|performance) XPSTURBO="0"; SHIFT="2" ;; \
    off|powersave) XPSTURBO="1"; SHIFT="2" ;; esac
    [[ -z "${XPSTURBO}" ]] && \
    printf "${0} turbo {on,off} - Intel P-State Turbo\n" || \
    [[ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]] && \
    printf "${XPSTURBO}" > /sys/devices/system/cpu/intel_pstate/no_turbo &
    [[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
    wait
    unset XPSTURBO SHIFT
    ht*)
    case "${1}" in \
    ht-on) HYPERTHREADS="1" ;; \
    ht-off) HYPERTHREADS="0" ;; esac
    [[ -z "${HYPERTHREADS}" ]] && \
    case "${2}" in \
    on|performance) HYPERTHREADS="1"; SHIFT="2" ;; \
    off|powersave) HYPERTHREADS="0"; SHIFT="2" ;; esac
    [[ -z "${HYPERTHREADS}" ]] && \
    printf "${0} ht {on,off} - Hyperthreads\n" || \
    for i in /sys/devices/system/cpu/cpu*/online; do [[ -f "${i}" ]] && \
    [[ "$(printf "${i}" | tr -cd [:digit:])" -ge "${CORES}" ]] && \
    printf "${HYPERTHREADS}" > "${i}" & done &
    [[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
    wait
    unset HYPERTHREADS SHIFT
    gpu*)
    case "${1}" in \
    gpu-full) NVPM="1" ;; \
    gpu-cut) NVPM="0" ;; esac
    [[ -z "${NVPM}" ]] && \
    case "${2}" in \
    full|performance) NVPM="1"; SHIFT="2" ;; \
    cut|powersave) NVPM="0"; SHIFT="2" ;; esac
    [[ -z "${NVPM}" ]] && \
    printf "${0} gpu {cut,full} - GPU runtime powersaving (only Nvidia ATM)\n" || \
    [[ -z "$(command -v nvidia-settings)" ]] && \
    printf "nvidia-settings not found; only nvidia currently supported" || \
    DISPLAY=":0.0" nvidia-settings -a [gpu:0]/GPUPowerMizerMode="${NVPM}" > /dev/null &
    [[ -n "${SHIFT}" ]] && shift "${SHIFT}" || shift
    wait
    unset NVPM SHIFT
    check)
    printf "\nCPU Governor\n/sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor\n"
    for i in /sys/bus/cpu/drivers/processor/cpu*/cpufreq/scaling_governor; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/bus/cpu/drivers/processor/||g; s|/.*||g; N;s|\n|\t|'
    [[ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]] && \
    printf "\nDisable Intel P-State Turbo\n/sys/devices/system/cpu/intel_pstate/no_turbo\n"; \
    printf "no_turbo\n$(cat /sys/devices/system/cpu/intel_pstate/no_turbo)\n" | sed 'N;s|\n|\t|'
    printf "\nHyperthreads\n/sys/devices/system/cpu/cpu*/online\n"
    for i in /sys/devices/system/cpu/cpu*/online; do [[ -f "${i}" ]] && \
    [[ $(printf "${i}" | tr -cd [:digit:]) -ge "$CORES" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/devices/system/cpu/||g; s|/.*||g; N;s|\n|\t|'
    [[ -z "$(command -v x86_energy_perf_policy)" ]] && \
    printf "\nEnergy Perf Bias\n" && \
    x86_energy_perf_policy -r #SUID
    printf "\nVirtual Memory (Swap)\n/proc/sys/vm/\n"
    printf "laptop_mode\t$(cat /proc/sys/vm/laptop_mode)\n"
    printf "dirty_writeback_centisecs\t$(cat /proc/sys/vm/dirty_writeback_centisecs)\n"
    printf "dirty_expire_centisecs\t$(cat /proc/sys/vm/dirty_expire_centisecs)\n"
    [[ -f /proc/sys/kernel/watchdog ]] && \
    printf "\nNMI watchdog\n" && \
    printf "/proc/sys/kernel/watchdog\t$(cat /proc/sys/kernel/watchdog)\n"
    printf "\nSATA link power management\n/sys/class/scsi_host/host*/link_power_management_policy\n"
    for i in /sys/class/scsi_host/host*/link_power_management_policy; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/scsi_host/||g; s|/.*||g; N;s|\n|\t|'
    [[ -n "$(command -v hdparm)" ]] && \
    printf "\nHard drives\n/dev/[hs]d[a-z]\n" && \
    hdparm -B -M /dev/[hs]d[a-z] 2> /dev/null | sed 'N;s|\n||g; s|/dev/||g; s|\t| |g;' #SUID
    printf "\nRuntime power management\n/sys/{class,bus}/*/{*,devices/*}/power/control\n"
    for i in /sys/{class,bus}/*/{*,devices/*}/power/control; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/||g; s|/sys/bus/||g; s|/devices||g; s|/power/control||g; N;s|\n|\t|'
    printf "\nUSB Autosuspend (may disable some older devices!)\n/sys/bus/usb/devices/*/power/autosuspend{,_delay_ms}\n"
    for i in /sys/bus/usb/devices/*/power/autosuspend{,_delay_ms}; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/bus/usb/devices/||g; s|/.*||g; N;s|\n|\t|'
    printf "\nPower saving for modules\n/sys/module/*/parameters/power_save{,_controller}\n"
    for i in /sys/module/*/parameters/power_save{,_controller}; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/module/||g; s|/parameters/.*||g; s|/.*||g; N;s|\n|\t|'
    printf "\nNetwork device powersaving\n/sys/class/net/{wl*,e*,*/device/power/wakeup}\n";
    [[ -n "$(command -v iw)" ]] && \
    for i in /sys/class/net/wl*; do [[ -d "${i}" ]] && \
    printf "${i}\n$(iw dev $(printf ${i} | sed 's/^.*wl/wl/') get power_save)"; done | sed 's|^\t| |g;s|/sys/class/net/||g; s|/.*||g'
    [[ -n "$(command -v ethtool)" ]] && \
    for i in /sys/class/net/e*; do [[ -d "${i}" ]] && \
    printf "${i}\n$(ethtool $(printf ${i} | sed 's/^.*e/e/') | grep Wake-on)"; done | sed 's|^\t| |g;s|/sys/class/net/||g; s|/.*||g'
    for i in /sys/class/net/*/device/power/wakeup; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/net/||g; s|/device/power/wakeup||g; s|/.*||g; N;s|\n|\t|'
    printf "\nLEDs\n/sys/class/leds/*/brightness\n"
    for i in /sys/class/leds/*/brightness; do [[ -f "${i}" ]] && \
    printf "${i}\n$(cat ${i})\n"; done | sed 's|/sys/class/leds/||g; s|/brightness||g; s|/.*||g; N;s|\n|\t|'
    [[ -n "$(command -v nvidia-settings)" ]] && \
    printf "\nNvidia PowerMizer\n" && \
    DISPLAY=":0.0" nvidia-settings -q [gpu:0]/GPUPowerMizerMode | grep "Attribute" | sed 's|.*\[||g;s|\]):||g;s| |\t|g;s|\.$||g'
    shift
    *|help)
    [[ ! "${1}" == "help" ]] && \
    printf "Invalid input: $@\n"
    printf "\nRuntime power management:\n"
    printf "${0} {cut,full} - system-wide runtime powersaving\n"
    printf "${0} check - inspect runtime powersaving\n"
    printf "\nExtras:\n"
    printf "${0} gov {cut,full} - CPU Governor\n"
    printf "${0} turbo {on,off} - Intel P-State Turbo\n"
    printf "${0} ht {on,off} - Hyperthreads\n"
    printf "${0} gpu {cut,full} - GPU runtime powersaving (only Nvidia ATM)\n"
    printf "\nOptions can take {performace,powersave} and are stackable:\n"
    printf "\n${0} powersave gov full turbo on gpu full ht on check\n"
    exit
    esac
    done
    For maximum effectivenes, it's best to apply the settings to new devices immediately with udev. Not all of the powersaving options are accessible from udev directly. These rules enable most of the powersaving settings on boot and for all newly connected devices. I'm not quite satisfied with this, so it isn't currently packaged with indicator-powersave.
    /etc/udev/rules.d/runtime-pm.rules
    ## Whitelisted Actions
    ACTION!="add", GOTO="runtime_pm_rules_end"
    ## Blacklisted Devices (USB Keyboard/Mouse, etc.)
    # Logitec Unifying Reciever (occasionally disabled ?)
    ATTR{idVendor}=="046d", ATTR{idProduct}=="c52b", GOTO="runtime_pm_rules_end"
    # Standard Microsystems Corp. 2 Port Hub (doesn't charge with runtime pm ?)
    ATTR{idVendor}=="0424", ATTR{idProduct}=="a700", GOTO="runtime_pm_rules_end"
    # Charge Sixaxis/Dualshock 3 (disconnect or charge too slowly with runtime pm ?)
    ATTR{idVendor}=="054c", ATTR{idProduct}=="0268", GOTO="runtime_pm_rules_end"
    # Hard disk power saving
    SUBSYSTEM=="scsi_host", KERNEL=="host*", ATTR{link_power_management_policy}="min_power"
    KERNEL=="[hs]d[a-z]", ATTR{queue/rotational}=="1", RUN+="/usr/bin/hdparm -B 1 -M 128 /dev/%k"
    # Various subsystems runtime power management
    SUBSYSTEMS=="*", ATTR{power/control}=="on", ATTR{power/control}="auto"
    # USB autosuspend devices after 1 sec (may disable some old devices!)
    SUBSYSTEM=="usb", TEST=="power/autosuspend", ATTR{power/autosuspend}="1"
    SUBSYSTEM=="usb", TEST=="power/autosuspend_delay_ms", ATTR{power/autosuspend_delay_ms}="1"
    # Various subsystems power saving
    SUBSYSTEMS=="*", TEST=="parameters/power_save", ATTR{parameters/power_save}="1"
    SUBSYSTEMS=="*", ATTR{parameters/power_save_controller}=="N", ATTR{parameters/power_save_controller}="Y"
    # D3 Cold
    DRIVER=="*", ATTR{d3cold_allowed}=="0", ATTR{d3cold_allowed}="1"
    # Network Powersaving
    SUBSYSTEM=="net", KERNEL=="wl*", RUN+="/usr/bin/iw dev %k set power_save on"
    SUBSYSTEM=="net", KERNEL=="e*", RUN+="/usr/sbin/ethtool -s %k wol d"
    SUBSYSTEM=="net", TEST=="device/power/wakeup", ATTR{device/power/wakeup}="disabled"
    # Reduce LED Brightness
    SUBSYSTEM=="leds", TEST=="brightness", ATTR{brightness}="0"
    # Exit
    LABEL="runtime_pm_rules_end"
    Settings that require modifying unique configuration files and on/off only switches have been intentionally omitted.
    Settings for proprietary and OEM devices are being added as needed (on the hardware I have; open to suggestions for more!).
    ::UPDATE::
    Massive under-the-hood improvements for throttle:
    -All external tools are now optional; missing tools will be skipped over.
    -Option stacking works as advertised (among other code improvements).
    -Better option style: "option setting" eg "ht on" The old style still works too, ie "ht-on" as still used by indicator-powersave, and all options can take {performance,powersave}.
    Throttle cut systemd service: throttle-cut.service (disabled by default)
    indicator-powersave's "GPU Throttle" menu still does not work for no logical reason. throttle gpu {full,cut} works.
    Last edited by quequotion (2015-05-10 04:55:12)

    ooo wrote:you can use udev rules, sysctl.d, tmpfiles.d and/or modprobe.d to enable all of those settings. Then you wouldn't need to write any additional systemd services.
    Thanks! This will be best for making sure the system starts up in low power mode (udev rules probably take effect earlier than my systemd service would). Still need to work on a way to toggle all of them on and off. Something like "systemctl start/stop runtime-pm"... Maybe I can have it toggle the powersave mode through udev?
    Then use a script if you need to disable some of the settings to maximize performance when needed.
    or you can write systemd service that simply runs the powersaving script.
    This may be what I'm looking for.
    you can disable nmi watchdog via sysctl or kernel command line
    These days I compile the kernel without watchdog support, but a good idea no less.
    There are also some additional power saving possibilities for your HD, although they may not be best suited for desktop hard drives.
    I have four SATA II drives in a 2TB RAID:0 array... if they have powersaving options I'll give them a shot.
    Also, PowerTOP HTML report:
    <!DOCTYPE html>
    <html lang='en'>
    <head>
    <title>PowerTOP report</title>
    <meta http-equiv='content-type' content='text/html;charset=utf-8'>
    <script type='text/javascript'>
    var powertop = {
    blocks: {
    summary: 'Summary',
    cpuidle: 'CPU Idle',
    cpufreq: 'CPU Frequency',
    software: 'Software Info',
    devinfo: 'Device Info',
    tuning: 'Tuning',
    ahci: 'AHCI'
    cadd: function(idx, c){
    var el = document.getElementById(idx);
    if (el) {
    var cn = el.className;
    if (cn.indexOf(c) != -1)
    return;
    cn += ' ' + c;
    el.className = cn;
    crm: function(id, c){
    var el = document.getElementById(id);
    if (el) {
    var cn = el.className
    while (cn.indexOf(' ' + c) != -1)
    cn = cn.replace(' ' + c,'');
    el.className = cn;
    newbutton: function(id, txt) {
    var x = document.createElement('div');
    x.id = id + '_button';
    x.className = 'nav_button';
    x.textContent = txt;
    x.innerText = txt;
    x.onclick = function() { powertop.toggle(id); };
    return x;
    setupbuttons: function() {
    var t = document.getElementById('main_menu');
    if (t) {
    for (var b in powertop.blocks) {
    t.appendChild(powertop.newbutton(b, powertop.blocks[b]));
    t.appendChild(powertop.newbutton('all', 'All'));
    toggle: function(b) {
    powertop.baseall();
    if (b == 'all') {
    for (var c in powertop.blocks) {
    powertop.crm(c, 'hide');
    } else {
    powertop.crm(b, 'hide');
    powertop.cadd(b + '_button', 'pressed');
    baseall: function() {
    for (var b in powertop.blocks) {
    powertop.cadd(b, 'hide');
    powertop.crm(b + '_button', 'pressed');
    powertop.cadd('all', 'hide');
    powertop.crm('all_button', 'pressed');
    onload: function() {
    powertop.setupbuttons();
    powertop.toggle('summary');
    </script>
    <style type='text/css'>
    /* General CSS */
    margin:0px;
    padding:0px;
    body {
    background-color: #eee; /* Background color */
    color: #222; /* Font color */
    font-family: Helvetica;
    font-size: 14px;
    #main_container{
    width: 960px;
    margin: 2px auto;
    /* Top logo & system table css */
    #main_header{
    min-width: 960px;
    display:block;
    img.pwtop_logo{
    float:left;
    height:40%;
    width: 40%;
    padding:20px;
    .sys_info
    float: left;
    height:116px;
    width:450px;
    font-size: 12px;
    display: inline;
    position relative;
    text-align: left;
    th{
    text-align: left;
    /* CSS Main Content */
    .content_title
    color: #296629;
    padding:0px;
    margin:2px;
    #chart_div{
    float: left;
    .small
    font-size: 10px;
    table.emphasis2
    font-size: 13px;
    max-width:95%;
    th.emph_title {
    padding:5px;
    tr.emph1:nth-child(odd) {
    background: #ffffff;
    tr.emph1:nth-child(even) {
    background: #ebebeb;
    tr.tune:nth-child(odd) {
    background: #fffcfc;
    tr.tune:nth-child(even) {
    background: #fff0f0;
    td.no_wrap:first-child {
    white-space:nowrap;
    .side_by_side_left{
    float:left;
    .side_by_side_right{
    float:right;
    #device{
    display: inline-block;
    .clear_block{
    clear:both;
    td.package{
    background-color: #e0ddfa; /*purple*/
    td.core{
    background-color: #d1ddff; /*ccebff; /*blue*/
    td.cpu{
    background-color: #ffffeb; /* yellow */
    th.title{
    text-align: center;
    /*border-bottom: 1px solid #666;*/
    li.summary_list
    display: inline;
    padding: 5px;
    background-color: #f6f6f9;
    font-size: 12px;
    /* main menu css*/
    #main_menu {
    display: inline-block;
    font-weight: bold;
    padding: 5px 0;
    text-align: center;
    background-image: -webkit-gradient(linear, left top, left bottom,
    from(#aaa), to(#eee));
    background: -moz-linear-gradient(top, #aaa, #eee);
    #main_menu div {
    font-size: 12px;
    font-weight: bold;
    color: white;
    #main_menu div.nav_button {
    margin: 0 0.2em;
    display: inline;
    cursor: pointer;
    color: #223232;
    font-size: 13px;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    div.pressed {
    border: -webkit-gradient(linear, left top, left bottom,
    from(#b2ffb2), to(#e0ffe0));
    border-width:0px 8px 0px 8px;
    background: #999;
    background-image: -webkit-gradient(linear, left top, left bottom,
    from(#b2ffb2), to(#e0ffe0));
    background: -moz-linear-gradient(top, #b2ffb2, #e0ffe0);
    div.hide {
    display: none;
    </style>
    </head>
    <body onload='powertop.onload();'>
    <div id="main_container">
    <header id="main_header">
    <img alt="PowerTop" class="pwtop_logo" src="./PowerTop.png"><div class="sys_info">
    <h2 class="content_title"> System Information </h2>
    <table class="emphasis1">
    <tr> <th class="table_sysinfo"> PowerTOP Version </th> <td > v2.6 </td> </tr>
    <tr> <th class="table_sysinfo"> Kernel Version </th> <td > Linux version 3.13.6-2-ck </td> </tr>
    <tr> <th class="table_sysinfo"> System Name </th> <td > ASRockZ68 Extreme4 Gen3To Be Filled By O.E.M. </td> </tr>
    <tr> <th class="table_sysinfo"> CPU Information </th> <td > Intel(R) Core(TM) i7-2700K CPU @ 3.50GHz </td> </tr>
    <tr> <th class="table_sysinfo"> OS Information </th> <td > Arch Linux </td> </tr>
    </table>
    </div>
    </header>
    <br/><div id="main_menu"> </div>
    <div><br/> <ul>
    <li class="summary_list"> <b> Target: </b> 1 units/s </li><li class="summary_list"> <b> System: </b> 845.8 wakeup/s </li><li class="summary_list"> <b> CPU: </b> 37.8% usage </li><li class="summary_list"> <b> GPU: </b> 0 ops/s </li><li class="summary_list"> <b> GFX: </b> 226.6 wakeups/s </li><li class="summary_list"> <b> VFS: </b> 0 ops/s </li></ul> </div> <br />
    <div id="summary">
    <h2 class="content_title"> Top 10 Power Consumers </h2>
    <table class="emphasis2">
    <tr class="emph1"> <th class="emph_title"> Usage </th> <th class="emph_title"> Events/s </th> <th class="emph_title"> Category </th> <th class="emph_title"> Description </th> </tr>
    <tr class="emph1"> <td > 33.4% </td> <td > 332.5 </td> <td > Process </td> <td > /usr/bin/vlc --started-from-file </td> </tr>
    <tr class="emph1"> <td > 0.9% </td> <td > 189.6 </td> <td > Process </td> <td > /usr/lib/firefox/firefox </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > </td> <td > Device </td> <td > Audio codec hwC0D0: Realtek </td> </tr>
    <tr class="emph1"> <td > 0.1% </td> <td > 83.1 </td> <td > Timer </td> <td > tick_sched_timer </td> </tr>
    <tr class="emph1"> <td > 0.1% </td> <td > 57.6 </td> <td > Process </td> <td > compton --dbus </td> </tr>
    <tr class="emph1"> <td > 0.1% </td> <td > 56.3 </td> <td > Timer </td> <td > hrtimer_wakeup </td> </tr>
    <tr class="emph1"> <td > 0.9% </td> <td > 47.2 </td> <td > Process </td> <td > /usr/bin/pulseaudio --start </td> </tr>
    <tr class="emph1"> <td > 0.3% </td> <td > 27.2 </td> <td > Interrupt </td> <td > [6] tasklet(softirq) </td> </tr>
    <tr class="emph1"> <td > 0.0% </td> <td > 8.9 </td> <td > Interrupt </td> <td > [58] snd_hda_intel </td> </tr>
    <tr class="emph1"> <td > 0.1% </td> <td > 8.1 </td> <td > kWork </td> <td > os_execute_work_item </td> </tr>
    </table>
    </div>
    <div class="clear_block" id="cpuidle">
    <h2 class="content_title"> Processor Idle State Report </h2>
    <table class="emphasis2 side_by_side_left">
    <tr> <th class="title"> Package </th> <th class="title"> 0 </th> </tr>
    <tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
    <tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
    <tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
    <tr> <td class="package"> C2 (pc2) </td> <td class="package"> 0.0% </td> </tr>
    <tr> <td class="package"> C3 (pc3) </td> <td class="package"> 0.0% </td> </tr>
    <tr> <td class="package"> C6 (pc6) </td> <td class="package"> 0.0% </td> </tr>
    <tr> <td class="package"> C7 (pc7) </td> <td class="package"> 0.0% </td> </tr>
    </table>
    <table class="emphasis2 side_by_side_left">
    <tr> <th class="title"> </th> <th class="title"> Core 0 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> C3 (cc3) </td> <td class="core"> 2.4% </td> </tr>
    <tr> <td class="core"> C6 (cc6) </td> <td class="core"> 61.3% </td> </tr>
    <tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> Core 1 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> C3 (cc3) </td> <td class="core"> 1.1% </td> </tr>
    <tr> <td class="core"> C6 (cc6) </td> <td class="core"> 54.1% </td> </tr>
    <tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> Core 2 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> C3 (cc3) </td> <td class="core"> 2.2% </td> </tr>
    <tr> <td class="core"> C6 (cc6) </td> <td class="core"> 76.9% </td> </tr>
    <tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> Core 3 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> C3 (cc3) </td> <td class="core"> 1.8% </td> </tr>
    <tr> <td class="core"> C6 (cc6) </td> <td class="core"> 85.9% </td> </tr>
    <tr> <td class="core"> C7 (cc7) </td> <td class="core"> 0.0% </td> </tr>
    </table>
    <table class="emphasis2 side_by_side_left">
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 0 </th> <th class="title"> CPU </th> <th class="title"> 4 </th> </tr>
    <tr> <th class="title"> C0 active </th> <td class="cpu"> 25.1% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 9.2% </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
    <tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 6.6% </td> <td class="cpu"> 1.1 ms </td> <td class="cpu"> 0.9% </td> <td class="cpu"> 1.3 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> C3-SNB </th> <td class="cpu"> 1.6% </td> <td class="cpu"> 0.7 ms </td> <td class="cpu"> 0.2% </td> <td class="cpu"> 0.8 ms </td> </tr>
    <tr> <th class="title"> C6-SNB </th> <td class="cpu"> 67.9% </td> <td class="cpu"> 2.0 ms </td> <td class="cpu"> 89.1% </td> <td class="cpu"> 10.5 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 1 </th> <th class="title"> CPU </th> <th class="title"> 5 </th> </tr>
    <tr> <th class="title"> C0 active </th> <td class="cpu"> 25.4% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 8.1% </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
    <tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 9.8% </td> <td class="cpu"> 2.0 ms </td> <td class="cpu"> 3.4% </td> <td class="cpu"> 5.5 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> C3-SNB </th> <td class="cpu"> 0.9% </td> <td class="cpu"> 0.6 ms </td> <td class="cpu"> 0.1% </td> <td class="cpu"> 0.5 ms </td> </tr>
    <tr> <th class="title"> C6-SNB </th> <td class="cpu"> 59.8% </td> <td class="cpu"> 2.1 ms </td> <td class="cpu"> 88.9% </td> <td class="cpu"> 13.5 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 2 </th> <th class="title"> CPU </th> <th class="title"> 6 </th> </tr>
    <tr> <th class="title"> C0 active </th> <td class="cpu"> 15.4% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 4.6% </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
    <tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 1.8% </td> <td class="cpu"> 1.0 ms </td> <td class="cpu"> 0.4% </td> <td class="cpu"> 1.1 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> C3-SNB </th> <td class="cpu"> 0.7% </td> <td class="cpu"> 0.7 ms </td> <td class="cpu"> 0.7% </td> <td class="cpu"> 13.5 ms </td> </tr>
    <tr> <th class="title"> C6-SNB </th> <td class="cpu"> 82.7% </td> <td class="cpu"> 4.0 ms </td> <td class="cpu"> 92.5% </td> <td class="cpu"> 20.9 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU </th> <th class="title"> 3 </th> <th class="title"> CPU </th> <th class="title"> 7 </th> </tr>
    <tr> <th class="title"> C0 active </th> <td class="cpu"> 8.7% </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> 2.5% </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> POLL </th> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> <td class="cpu"> 0.0% </td> <td class="cpu"> 0.0 ms </td> </tr>
    <tr> <th class="title"> C1E-SNB </th> <td class="cpu"> 0.8% </td> <td class="cpu"> 0.8 ms </td> <td class="cpu"> 0.2% </td> <td class="cpu"> 1.4 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    <tr> <th class="title"> C3-SNB </th> <td class="cpu"> 0.8% </td> <td class="cpu"> 1.0 ms </td> <td class="cpu"> 0.2% </td> <td class="cpu"> 8.6 ms </td> </tr>
    <tr> <th class="title"> C6-SNB </th> <td class="cpu"> 88.2% </td> <td class="cpu"> 7.6 ms </td> <td class="cpu"> 97.8% </td> <td class="cpu"> 28.3 ms </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> <td class="cpu"> &nbsp; </td> </tr>
    </table>
    </div>
    <div class="clear_block" id="cpufreq">
    <h2 class="content_title"> Processor Frequency Report </h2>
    <table class="emphasis2 side_by_side_left">
    <tr> <th class="title"> Package </th> <th class="title"> 0 </th> </tr>
    <tr> <td class="package"> &nbsp; </td> <td class="package"> &nbsp; </td> </tr>
    <tr> <td class="package"> Idle </td> <td class="package"> 100.0% </td> </tr>
    </table>
    <table class="emphasis2 side_by_side_left">
    <tr> <th class="title"> </th> <th class="title"> Core 0 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> Core 1 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> Core 2 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> Core 3 </th> </tr>
    <tr> <td class="core"> &nbsp; </td> <td class="core"> &nbsp; </td> </tr>
    <tr> <td class="core"> Idle </td> <td class="core"> 100.0% </td> </tr>
    </table>
    <table class="emphasis2 side_by_side_left">
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 0 </th> <th class="title"> CPU 4 </th> </tr>
    <tr> <th class="title"> Actual </th> <td class="cpu"> 4.7 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
    <tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 1 </th> <th class="title"> CPU 5 </th> </tr>
    <tr> <th class="title"> Actual </th> <td class="cpu"> 4.8 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
    <tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 2 </th> <th class="title"> CPU 6 </th> </tr>
    <tr> <th class="title"> Actual </th> <td class="cpu"> 4.8 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
    <tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
    <tr> <th class="title"> &nbsp; </th> <th class="title"> CPU 3 </th> <th class="title"> CPU 7 </th> </tr>
    <tr> <th class="title"> Actual </th> <td class="cpu"> 4.8 GHz </td> <td class="cpu"> 4.8 GHz </td> </tr>
    <tr> <th class="title"> Idle </th> <td class="cpu"> 100.0% </td> <td class="cpu"> 100.0% </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> </th> <th class="title"> </th> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> </td> <td class="cpu"> </td> </tr>
    <tr> <th class="title"> </th> <td class="cpu"> </td> <td class="cpu"> </td> </tr>
    <tr> <th class="title"> </th> <th class="title"> </th> <th class="title"> </th> </tr>
    </table>
    </div>
    <div class="clear_block" id="software">
    <h2 class="content_title"> Overview of Software Power Consumers </h2>
    <table class="emphasis2">
    <tr class="emph1"> <th class="emph_title"> Usage </th> <th class="emph_title"> Wakeups/s </th> <th class="emph_title"> GPU ops/s </th> <th class="emph_title"> Disk IO/s </th> <th class="emph_title"> GFX Wakeups/s </th> <th class="emph_title"> Category </th> <th class="emph_title"> Description </th> </tr>
    <tr class="emph1"> <td class="no_wrap"> 334.2 ms/s </td> <td class="no_wrap"> 332.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 11.3 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/vlc --started-from-file </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 9.4 ms/s </td> <td class="no_wrap"> 189.6 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 154.8 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/firefox/firefox </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.9 ms/s </td> <td class="no_wrap"> 83.1 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> tick_sched_timer </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.5 ms/s </td> <td class="no_wrap"> 57.6 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 60.3 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> compton --dbus </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 550.5 us/s </td> <td class="no_wrap"> 56.3 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> hrtimer_wakeup </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 9.0 ms/s </td> <td class="no_wrap"> 47.2 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/pulseaudio --start </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 3.4 ms/s </td> <td class="no_wrap"> 27.2 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [6] tasklet(softirq) </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 303.4 us/s </td> <td class="no_wrap"> 8.9 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [58] snd_hda_intel </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 643.7 us/s </td> <td class="no_wrap"> 8.1 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> os_execute_work_item </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 24.7 us/s </td> <td class="no_wrap"> 5.6 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [pt1] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 12.8 ms/s </td> <td class="no_wrap"> 0.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/sbin/X :0 -auth /run/lightdm/root/:0 -nolisten tcp vt1 -novtswitch </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 102.4 us/s </td> <td class="no_wrap"> 5.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/tor -f /etc/tor/torrc </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 12.9 us/s </td> <td class="no_wrap"> 4.9 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [usb-storage] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 72.1 us/s </td> <td class="no_wrap"> 2.8 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [4] block(softirq) </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 12.0 us/s </td> <td class="no_wrap"> 2.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [rcu_preempt] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 25.0 us/s </td> <td class="no_wrap"> 2.0 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> mono /usr/lib/glippy/glippy.exe </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 109.7 us/s </td> <td class="no_wrap"> 1.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> pantheon-files </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 194.3 us/s </td> <td class="no_wrap"> 1.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/indicator-sound/indicator-sound-service </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 220.8 us/s </td> <td class="no_wrap"> 1.3 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/gnome-settings-daemon/gnome-settings-daemon </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 564.6 us/s </td> <td class="no_wrap"> 0.7 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> disk_events_workfn </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 39.9 us/s </td> <td class="no_wrap"> 0.8 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [16] ehci_hcd:usb3 </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.7 ms/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [64] nvidia </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 5.3 us/s </td> <td class="no_wrap"> 0.7 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> ehci_hrtimer_func </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.2 us/s </td> <td class="no_wrap"> 0.7 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> blk_delay_work </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 361.3 us/s </td> <td class="no_wrap"> 0.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> indicator-sensors </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 14.7 us/s </td> <td class="no_wrap"> 0.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> pci_pme_list_scan </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.7 us/s </td> <td class="no_wrap"> 0.5 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/sixad-bin 0 0 0 </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 73.0 us/s </td> <td class="no_wrap"> 0.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/python2 /usr/bin/indicator-cpufreq </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 5.1 us/s </td> <td class="no_wrap"> 0.4 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/httpd -f /usr/share/gnome-user-share/dav_user_2.4.conf -C Listen 49076 </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 62.0 us/s </td> <td class="no_wrap"> 0.3 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [9] RCU(softirq) </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 35.5 us/s </td> <td class="no_wrap"> 0.25 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/sbin/thermald --no-daemon --dbus-enable </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 5.3 us/s </td> <td class="no_wrap"> 0.25 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/contractor </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 535.4 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [1] timer(softirq) </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 7.9 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 0.2 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> xscreensaver -no-splash </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 6.5 us/s </td> <td class="no_wrap"> 0.20 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> slingshot-launcher --silent </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 89.9 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/dbus-daemon --fork --print-pid 4 --print-address 6 --session </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 40.2 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> 0.1 </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> pantheon-terminal </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 5.8 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/NetworkManager --no-daemon </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.9 us/s </td> <td class="no_wrap"> 0.15 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> openbox </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 147.8 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/bin/preload --foreground --verbose 1 </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 8.4 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/0] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 2.9 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> zeitgeist-datahub </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.0 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> push_to_pool </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.9 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [khugepaged] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.2 us/s </td> <td class="no_wrap"> 0.10 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> neigh_periodic_work </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 230.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> intel_pstate_timer_func </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 222.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> powertop --html=runtime-pm.html </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 21.2 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/4] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 16.0 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/2] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 142.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [8] hrtimer(softirq) </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 12.9 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> bdi_writeback_workfn </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.1 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [jbd2/md126p2-8] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.8 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/systemd/systemd-hostnamed </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.6 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/accountsservice/accounts-daemon </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 1.4 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/indicator-datetime/indicator-datetime-service </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> check_corruption </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.7 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/GConf/gconfd-2 </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.6 us/s </td> <td class="no_wrap"> 0.05 </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> submit_flushes </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 117.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> tg3_timer </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 37.1 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [16] ivtv0 </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 33.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [56] SATA controller </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 30.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> delayed_work_timer_fn </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 30.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> process_timeout </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 26.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> nvidia_rc_timer </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 25.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/3] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 20.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/0:2] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 19.9 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> vmstat_update </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 17.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/5] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 16.9 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> super-wingpanel </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 13.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/6] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 9.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/7] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 8.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /usr/lib/bamf/bamf/bamfdaemon </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 6.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:3] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 6.4 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> bfq_idle_slice_timer </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 6.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [ksoftirqd/1] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 5.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> clocksource_watchdog </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/4:2] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/3:0] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> /sbin/init </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:1] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 4.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/5:1] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 3.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/6:0] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 3.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/7:2] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 3.0 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:2] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 2.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:4] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 2.1 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> plank </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.9 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/2:1H] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> kWork </td> <td class="no_wrap"> md_submit_flush_data </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> dev_watchdog </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/1:1] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> it_real_fn </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.8 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/0:1H] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.6 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> writeout_period </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.5 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Interrupt </td> <td class="no_wrap"> [2] net tx(softirq) </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.4 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> __prandom_timer </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.3 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> blk_rq_timed_out_timer </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.2 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Process </td> <td class="no_wrap"> [kworker/u16:0] </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> 0.1 us/s </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> Timer </td> <td class="no_wrap"> commit_timeout </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> </tr>
    <tr class="emph1"> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> <td class="no_wrap"> </td> </tr>
    </table>
    </div>
    <div id="devinfo">
    <h2 class="content_title"> Device Power Report </h2>
    <table class="emphasis2 side_by_side_left">
    <tr class="emph1"> <th class="emph_title"> Usage </th> <th class="emph_title"> Device Name </th> </tr>
    <tr class="emph1"> <td > 37.8% </td> <td > CPU core </td> </tr>
    <tr class="emph1"> <td > 37.8% </td> <td > CPU misc </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > Audio codec hwC0D0: Realtek </td> </tr>
    <tr class="emph1"> <td > 0.0 ops/s </td> <td > GPU core </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > Display backlight </td> </tr>
    <tr class="emph1"> <td > 0.0 ops/s </td> <td > GPU misc </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: Internext Compression Inc iTVC16 (CX23416) Video Decoder </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: PLX Technology, Inc. PEX 8608 8-lane, 8-Port PCI Express Gen 2 (5.0 GT/s) Switch </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > PCI Device: Xilinx Corporation Device 222a </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > USB device: EHCI Host Controller </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > USB device: Mass Storage Device (Generic ) </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > USB device: F-01F (Fujitsu) </td> </tr>
    <tr class="emph1"> <td > 100.0% </td> <td > USB device: U

  • Indices and performance

    Hi there,
    I'm trying to get a better performace with indices. I read about them that they help to find the in the where-clausel referenced record(s). For read-only you get better performance, for writing its worse because of the needed actualisation.
    But when I have something like an UPDATE with WHERE clausel, is it better or worth or the same with indices? Like that:
    UPDATE adresses SET name='Mueller' WHERE name = 'Müller';with an Index of adresses.name
    Thanks for replies!
    ~Mel

    If you have an index on name, performance will be better. Even though your update will have to do index maintainence, it will not have to scan the full table looking for the rows to update. So, the trade off of a little bit of index maintainence can be far outweighed by the performance gain in finding the data.
    Generally, if you are doing singleton DML, then a bit of index maintainence will likely not be felt by the end user.
    Now, things can change quite a bit for bulk DML, such as when loading a data warehouse. Also, there can be significant performance impact if the column you are updating is referenced by the foreign keys of other tables.

  • Delivery Completed Indicator  - Open PO Quantity Issue

    Hi All,
    I have an issue relating to our Open Purchase Order Report.  I have some POs which are appearing on the report eventhough they are marked, 'Delivery Complete' ie NOT open. The example of a PO is where the PO Quantity is 100 and the Goods Receipt is 99.  The user knows that there will be no further deliveries and therefore marks the PO 'Delivery Complete'
    In the Extractor to BI we have extracted this field ELIKZ 'Delivery Completed Indicator'.  The structure of our datamodel is
    PSA -> DSO (Write Optimised DSO) -> Cube
    We calculate the Open PO Qty by taking 'PO Qty' minus 'Goods Receipt Quantity' I have checked the example PO in the cube & DSO.  I can see that for the infoobject 'Delivery Complete Indicator' that it has been marked 'X' but only on the records relating to the Goods Receipt for this PO.  The original PO record is added to the cube eg on 1st Jan and then the Goods Receipt record, including the delivery complete indicator is added to the cube on 31st Jan, but the original record is not updated by this indicator.  Therefore at the moment I cannot use this to filter out records in my query.  See below how it looks in the Cube;
    Created Date - PO No - PO Line - Del Complete Indicator - PO QTy - Goods Receipt Qty
    01.01.2011       123      10             (Blank)                             100
    31.01.2011       123      10                 X                                                         99
    What should I do?  How have you created this report?
    Just to let you know I have already read the post Delivery Completed Indicator(ELIKZ:0COMPL_DEL) in 2LIS_02_SCL
    Many thanks for your help,
    Michelle

    Hi Kalyan,
    Thanks very much for your message,
    In my case if the Order Qty is not equal to receipted this does not always mean that it is open.  Sometimes the receipted quantity can be over or under (not equal) and the PO can be closed.  What do you mean by confirmed quanity?  Also, this is a Purchase Order report not a Sales report.
    You have said...
    "Then I would suggest to still keep the condition on the Net ord qty and Net confirmed qty and exclude the del compl indicator as X and also the status as open "
    I don't understand how this will work.  My issue is that the indicator is not on all the records of a PO only the receipted records.
    Can you help again please?
    Many thanks
    Michelle

  • In list view in ibooks i have an indicator that looks like a media stop eg || in a circle on many lines. What is it

    All of a sudden using Ibooks on my Ipad - many lines in list view have this indicator || inside a circle appearing on the far right and the books no longer open.  I can find nothing about this in help. What is it and what does it mean
    Peter Rowan

    Hi John, I'm guessing that icon is created and updated by an extension. I'm not sure which one, though. Maybe something that is tracking the trackers, like Lightbeam? Have you tried hovering your mouse over the icon to see whether a tooltip appears, or clicking it?

  • Deactivate Goods receipt indicator on PO Delivery Tab

    Dear Experts
    My client would like that system would not require goods receipt (non-GR based PO) for PO line items of respective material group (services) - goods receipts should even not be possible so GR indicator on the delivery tab should be ticked-off.
    Since the client is using one-client system with multiple company codes on same client this requirement should be valid not on a client- but on a company code- or plant-level.
    Please advise how to approach to this challenge. Is it possible to set it up via customizing or some programming is required.
    Thank you in advance for any hint.
    Best regards
    Miha Egart

    Hi Jürgen,
    I have checked the Network, it is not stock managed.
    But there is another PO in which the network is not stock managed but The GR indicator is set for the PO.
    I am doing PR conversion through ME59 just against info record not against contract.
    Instead of automatically converting PR through ME59/ME59N, if I am trying to do it directly through ME21N, the GR tick is set. But the client will not do this, they will do automatic conversion of PR's only.
    Can you please suggest some other possibilities.
    Regards,
    Krishna Bharadwaj.

  • Config of Goods Receipt indicator specific to individual PO line price

    Hello all
    Is there a way to define Goods Receipt indicator (field WEPOS in EKPO table) to default to either checked or unchecked, for individual PO Lines, based on the price of the material at each PO line ? (ex price beyond a threshold value should require a Goods Receipt)
    Goods Receipt requirement would therefore not be vendor specific (ie configured at Vendor level XK01) or Account Assignment Category specific (ie configured at OME9), but specific to individual PO lines value/price. Where can this threshold value of price be specified ?
    Thanks a lot

    This can be configured on the basis of USER ID
    Inforecord.
    I dont think on the basis of PO valu.
    IN inforecord u can check this.

  • Win 8.1 OneDrive upload stalls, no indicator, no error

    Now that OneDrive offers 1TB of storage, I am attempting to upload all of my music, videos, and pictures - about 225GB of data. This is not working. OneDrive mysteriously stalls the upload. There are no indications of the upload stalling/stopping/pausing.
    I know it is stalled ONLY because I'm looking at network traffic and it is ZERO!
    If I check the Win 8 OneDrive app, the app indicates there "2 actions in progress..." Bringing the OneDrive app into context by clicking it, CPU utilization rises dramatically.  Sometimes to 80-90% range. Bring anything else back into
    the foreground, CPU util drops to a couple of %.  There is no impact by having/not having and upload in progress.  CPU util is a bug in the OneDrive app.  Intermittent, btw, for anybody that wants to file a bug on it.
    If I check the systray icon in Desktop by floating my mouse over it, the tooltip says, "Uploading 87.2 GB of 149.3 GB (58%)" (btw, due to restarts, it adusted the 225GB down to 150GB).  However that's wrong.  Nothing is actually uploading.
    If I click the systray icon a small console pops up with the syncing icon appearing and the following text displayed:
    "Uploading - 58% complete
    4904 items remaining
    Sync
    Pause syncing
    Open OneDrive in File Explorer"
    Again, this is wrong as there is ZERO network traffic.
    If I click the "Pause syncing" link, OneDrive is confused and thinks an error occurred.  It displays the exclamation mark inside a yellow triangle and states:
    "File syncing is paused
    4904 items couldn't be uploaded
    View sync problems
    Resume syncing
    Open OneDrive in File Explorer"
    Obviously this is wrong, there was no error.  Why it now displays the status as "paused", when clearly based on network traffic it was already paused, I don't know.  It's been paused all along.  If I click the "Resume syncing"
    link, the sync will indeed resume to the maximum rate of my outbound internet connection (about 6.5Mbps).  However, when I come back to my PC after an hour or so, I find the same state:  No network traffic, but OneDrive is indicating a sync is in
    progress.
    I have gone through all the power options to disable sleep, disable hibernation, disable drive shutdown, disable monitor shutoff, etc.  I went through network adapter advanced config and disabled power off (which is for power savings).
    First off, while a sync is in progress, Windows should be smart enough to know NOT to shut down or enter low power modes, but due to bugs, that is not the case.  Second, even after modifying the power profile and keeping my PC and all ancillary hardware
    alive, OneDrive still pauses and does so without any indicators anywhere.  OneDrive appears to think the transfer is still going. 
    I have verified all updates are installed.  I have rebooted my PC.  I've sat here and watched over it hoping to catch the problem, but have never seen it occur while I'm active on my PC.  I've verified this same problem occurs on other PCs. 
    I'm out of ideas.
    What is the point of having 1TB of storage if I can't upload anything to it?  Uploading this much data at 6.5Mbps will take days.  I cannot sit here and babysit my PC for days on end to find a workaround for Windows/OneDrive bugs.
    Please help.
    Regards,
    Michael

    Michael
    One drive questions need to be asked here.  On a different note I would make sure Onedrive is completely backed
    up AFAIK it is not.
    Wanikiya and Dyami--Team Zigzag

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

  • To Set Goods Receipt Indicator For Particular Line Items In SRM

    Hi All,
      i am working on BBP_DOC_CHANGE_BADI in SRM. i am trying to set the goods receipt indicator for particular line items based upon certain conditions. The values are being set in the badi. But when the Purchase Order is created in the backend R/3 i coudn't able to find the goods receipt indiactor being set..
    i used this field to set the GR indicator
      GR_IND = 'X'.  " Goods Receipt Indicator
    Can anyone help me in this?
    helpfull answers will be rewarded....
    Thanks,
    Murali

    To Murali and Christophe,
    I have set the GR and GR non val indicator in CREATE_PO BADI but I face the following situation :
    problem -
    In case of multiple account assignment in the shopping cart, the R/3 transaction ME21N sets these flags. 
    The flag status determined as per EBP conditions is lost.
    I need to retain the flag status as per EBP conditions even in this multiple account assignment scenario.
    proposed solution -
    - CREATE PO badi is already implemented in EBP and customised logic for GR and GR non valflag is in place.
    - I create user exit in R/3 backend system in ME21N transaction 
    - I make RFC call in this user exit to EBP and check the table BBP_PDPSET for the shopping cart.
    This is how I get the flag status as per EBP conditions and copy the same to R/3 thereby overriding the multiple account assignment check of the R/3 system.
    issue - 
    When I tried to verify that I can check the BBP_PDPSET table from R/3, I found that this table is not having entries for all the records in  CRMD_ORDERADM_I table.
    For which shopping carts will the BBP_PDPSET table not  be populated ?
    thank you in advance,
    Bhakti.

  • Updated CC today .. now the app manager is indicating only ten apps are now installed.

    I updated all apps today as per normal via the CC App Manager. All apps successfully updated, until Photoshop, which failed to update. I tried more than several times to update but it kept failing.
    I then decided to close the CC Manager and restart. When I accessed the Manager again and went to View Updates & Requests, the list indicated only ten apps were installed, and the rest had to be installed (AGAIN).  I  checked my Applications Folder and all the CC apps were still installed and working.
    I haven't received any error messages. However when I returned to the website the apps were indicating for me to download trial versions. My CC account is current and paid up til March 2016. Now I have just  accessed my Adobe ID account and checked under Plans & Products section, but it is indicating I have no No Registered Products.
    So currently my Adobe Creative Cloud Manager is indicating I have ten apps up to date (Lightroom 5, Acrobat XI Pro, Edge Animate CC, Edge Code CC, Edge Inspect CC, Edge Reflow CC, Extendscript Toolkit CC, Flash Builder Premium, Gaming SDK 1.4, Scout CC) but all other key applications have the install icon by their side (Photoshop CC, Illustrator CC, InDesign CC ...etc).
    I started on Photoshop 4 many years ago and have never had any issue with any of the Creative Suite's. I also had issue with my Adobe ID not being accepted, even when copy/pasting from my Keychain Access. I had to reset my password (used the same password anyway).
    My confidence in Creative Cloud is now somewhat diminished and I am considering canceling my CC subscription and returning to CS5 - because it works!
    EDIT: Since starting to write this the Adobe ID/ Community site has logged my account out unexpectedly. Not good.
    Adobe Creative Cloud v 1.9.1.474
    Yosemite 10.10
    MacBook Pro (Retina, 15-inch, Mid-2014)
    2.2 GHz Intel Core i7
    16 GB 1600 MHz DDR3
    APPLE SSD SM0256F: 256GB
    Intel Iris Pro 1536MB
    Adobe ID: Craig Mathews
    [email protected]

    I decided to uninstall Adobe Desktop Manager and reinstall, and seems to have remedied all of the CC apps issue...
    However still getting randomly logged out of my account and my password is not being accepted...
    Only way I got access again was to open three instances of the log in page and try again - third window opened, other two declared my password was wrong >_<
    This new online / cloud system is terrible. Might just reinstall CS5 anyway and be done with this crap. Meh!

  • How can I reset the value of an indicator in a while loop, from another synchronous while loop?

    I am running 2 synchronous while loops, one which is keep track of time, and the other is measuring periods. In the while loop that is measuring periods, I have a boolean indicator displaying whether the signal is on or off. My problem is that when the signal is off, the VI I use to measure the periods is waiting for the next signal, and displays the boolean value from the previous period measurement. While this VI is waiting, I want the indicator to display false and not the value from the last iteration of the loop.
    I am using LV 5.1 for MAC.

    Two things you can try:
    In preface to the first, the most common (perhaps ONLY) use of local variables should be in transferring data between parallel loops. This is a matter of discipline, and creates programs that are easier to understand, take less time and memory, and are just plain cleaner. Having said that, to transfer data between loops, use a local variable.
    Second solution: Instead of setting the value to false, just hide the indicator in question by using control references (property nodes for prev. version of LabVIEW). Control references are a great way to control items on a dialog or HMI screen.

  • Secondary Index vs Secondary Indices

    Hi All,
    In the earlier version already  we have the primary index,secondary indexes,But now iam going through the enhancements in NW 7.0 In this they mentioned Secondary indices as the new enhancement with NW 7.0,I know how to create the Secondary indices ,But i am getting the conffusion between secondary indexes (already we have) and the new Secondary Indices,So please could any one elobarate this or atleast URL'S which are relavant to this topic,It would be very help full to me.
    Thank you..
    Srihasa

    new index are just different at workbench level, but are the same at database level. You may assign them to a Y or Z package (instead of the sap package, it was seen as a modification of the standard). They also have a dedicated object directory entry (R3TR XINX). http://help.sap.com/saphelp_erp2005vp/helpdata/EN/85/685a41cdbf8047e10000000a1550b0/frameset.htm
    [Note 1257033 - Cookbook: Modification/enhancement for standard SAP system|http://service.sap.com/sap/support/notes/1257033]

  • How can I generate an Event if an indicator has changed it´s value?

    I need do gather some Errormessages of an application (e.g. The application sends "Not Ready" and it´s indicated on the LabVIEW window) because I want to sample them in a History box.
    I´ve tried this: First I placed an control (an LED) on the panel and copied the value of the "Not Read" indicator to a property node of the LED.
    Then configured the Event structure with the setting "Value has changed" of the LED.
    But the Event structure is not triggered only when I set the indicator with mouse..!
    Thanx in advance for Help!

    Sorry, can t read the message...
    "Paul Cardinale" a écrit dans le message de
    news: [email protected]..
    > EMG wrote in message
    news:<506500000008000000BF000100-1079395200000@exc​hange.ni.com>...
    > > I need do gather some Errormessages of an application (e.g. The
    > > application sends "Not Ready" and it s indicated on the LabVIEW
    > > window) because I want to sample them in a History box.
    > > I ve tried this: First I placed an control (an LED) on the panel and
    > > copied the value of the "Not Read" indicator to a property node of the
    > > LED.
    > >
    > > Then configured the Event structure with the setting "Value has
    > > changed" of the LED.
    > >
    > > But the Event structure is not trig
    gered only when I set the indicator
    > > with mouse..!
    > >
    > > Thanx in advance for Help!
    >
    > Use the Val (signaling) property.

  • Performace : SQL with CASE

    Hi,
    Why execution plan for SQL1 & SQL2 are same?
    Is there any performace impact(as compare to normal select) if we put CASE statement in SQL?
    SQL1
    SELECT
    CASE WHEN PCS_SKEY < 1 then NULL ELSE PCS_SKEY END PCS_SKEY,
    CASE WHEN MDT_SKEY < 1 then NULL ELSE MDT_SKEY END MDT_SKEY,
    CASE WHEN DLS_SKEY < 1 then NULL ELSE DLS_SKEY END DLS_SKEY,
    CASE WHEN MVI_SKEY < 1 then NULL ELSE MVI_SKEY END MVI_SKEY
    FROM F_REG
    SQL2
    SELECT
         PCS_SKEY,
         MDT_SKEY,
         DLS_SKEY,
         MVI_SKEY           
    FROM F_REG

    Explain Plan
    SQL1:
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=ALL_ROWS          4 M          38755                     
    TABLE ACCESS FULL     SMMTDW.F_REG     4 M     64 M     38755                     
    SQL2:
    Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
    SELECT STATEMENT Optimizer Mode=ALL_ROWS          4 M          38755                     
    TABLE ACCESS FULL     SMMTDW.F_REG     4 M     64 M     38755

Maybe you are looking for

  • Problem with getting specific canvas's to display within a viewstack based on button's clicked within a tilelist

    In a new application I'm creating I've managed to set it up so that a user can add up to 5 'user profile buttons' by clicking an 'add item' button and remove each one by clicking an 'remove item' when they are selected. That part works fine, however

  • Force word wrap in JTextPane (using HTMLEditorKit)

    Hi! I have a JTextPane on a JScrollPane inside a JPanel. My text pane is using HTMLEditorKit. I set the scrolling policies of my JScrollPane to: JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED & JScrollPane.HORIZONTAL_SCROLLBAR_NEVER. I did not find in JTex

  • RFC function as a Web service - how to make wsdl type names unique

    Hello, We have a RFC function module, converted into a web service named ZVIEW_AGREEM, which works perfectly. Note that we only have a basic CRM system (Basis 7.31 SP 11), we don't have PI. There is a client request to create a new version of this we

  • Gated Check-in : merge to Integration inconsistent

    Hello, we have the following scenario: Team Branch     Changeset 123    DeveloperA    introduce bug     Changeset 124    DeveloperB    fix bug Integration Branch (Gated Check-in)     Changeset 125 DeveloperB merge Team branch to Integration The assum

  • Web Pass Error

    Hi All, I have installed the Identity Server with OID, and Webpass with Standalone HTTP server 10.1.3.1 version. After installing the Webpass, the Http Server opmnctl process never starts.. I tried setting the LD_ASSUME_KERNEL=2.4.19 in opmn.xml for