unused mgmt classes

JonRoenick

ADSM.ORG Member
Joined
Feb 18, 2008
Messages
156
Reaction score
2
Points
0
Location
Maryland, US
PREDATAR Control23

I have certain management classes that aren't used. The problem is that i don't know all of the ones that are not being used. Is there a way to query which ones ARE used and then by process of elimination i'd find out the ones that AREN'T?

Just trying to tidy up for spring.
 
PREDATAR Control23

You can see which one are used:
Code:
select distinct n.domain_name,b.class_name from backups b,nodes n where n.node_name=b.node_name

select distinct n.domain_name,a.class_name from archives a,nodes n where n.node_name=a.node_name
 
PREDATAR Control23

You can see which one are used:
Code:
select distinct n.domain_name,b.class_name from backups b,nodes n where n.node_name=b.node_name

select distinct n.domain_name,a.class_name from archives a,nodes n where n.node_name=a.node_name
This great! thank you very much
 
Top