I have this to limit the view, Filter Nodes VolumeType = 'Fixed Disk'
but I have many dev sql servers I also dont want to view, how do you have two Filters? like this>?VolumeType = 'Fixed Disk' Caption not Like 'DEV*'
Thanks
VolumeType = 'Fixed Disk' and Caption not like 'dev*'
If you need filter Volumes under DEV nodes
USE:
VolumeType = 'Fixed Disk' and nodesdata.Caption not like 'dev*' (NPM 11.5)
VolumeType = 'Fixed Disk' and nodes.Caption not like 'dev*' (lower than NPM 11.5)
Lada
You can build a dynamic query.
thanks guys, the VolumeType = 'Fixed Disk' and nodesdata.Caption not like 'dev*' worked like a charm... wish it or examples like this where in the help area.