This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

looking for report of list of resources

hi all

anyone can help me to run a report for List of resources 

Parents Reply
  • hi bro

    i got the query 

    here it is 

    Select A.Resources, A.Resources_Name , A.IP_Address , A.Nodes
    From(
    select 'Interfaces' as Resources, I.InterfaceName as Resources_Name , N.IP_Address as IP_Address, N.Caption as Nodes
    From NodesData N Join Interfaces I On I.NodeID = N.NodeID
    Union
    select 'Volumes' as Resources , V.VolumeDescription as Resources_Name , N.IP_Address as IP_Address, N.Caption as Nodes
    From NodesData N Join Volumes V On V.NodeID = N.NodeID
    ) A
    Order By A.Nodes

Children
No Data