What nodes are in each copygroup?

smith_ja

ADSM.ORG Member
Joined
Apr 28, 2005
Messages
61
Reaction score
1
Points
0
Website
Visit site
Is there a command I can run that will list all the nodes that are using a specific copygroup?
 
You can see which node has data in which management class.
Code:
select distinct node_name,class_name from backups
Or you can do the reverse if you want to sort by class_name:
Code:
select distinct class_name,node_name from backups
 
Back
Top