I'm configuring up some extra alerts at a customer site for OEM (10.2B). The quickest way is to update the rulesets to do what I want. Easy enough, except they have their test databases on the same server meaning that as soon as I update a core ruleset the test databases start alerting too.
Is there a way of selecting a ruleset and seeing all the databases that have that ruleset allocated, rather than have to go from each DB and unallocate where necessary? It's a right pain and very slow doing it the DB down way.
not from the UI itself, I am afraid
cat aa.xml | egrep "resource.database|ruleset.database" | grep -vi schedule | uniq
where aa.xml is taken from "fathom -dump aa.xml"
Thanks Libor - that's at least something!