This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

STAT Central Agent Status still showing inactive service domains.

How do I exclude inactive service domains from the STAT Central Agent Status pop-up?  Having the "Not Responding" in red for those two domains that no longer are active, and can't be deleted, is just confusing.

 

peace,

clark

  • Hi Clark,

    This is the query Stat uses the display the Central Agent Status

    --- Query to Check Central Agent Status for all Service Domains
    select *
    from stat.MERC_WAKE
    where agent_type ='S' ;

    You can safely delete entries from that table using the statement below.
    Replace the sd_cd in the statement below with the value you need deleted.

    delete from stat.MERC_WAKE
    where agent_type ='S'
    and sd_cd = '<The Value you want to delete>'

    Regards.
    Tom