Hi,
Can you point out, what table on SWQL I will find this information?
Look at the swis entity Orion.SRM.Topology
NetObjectID and NetObjectType identify the SRM storage entity that the server volume is mapped to.
NetObjectID is the storage entity ID - For example LUNID from Orion.SRM.LUNs.
NetObjectType is the net object type for the storage entity. For example - "SML" for Orion.SRM.LUNs.
Thanks, that will work:
SELECT n.caption, M.NodeID, v.VolumeDescription, M.VolumeID, sa.Caption , M.StorageArrayID, M.NetObjectType, l.Name, M.NetObjectID, M.Manual
FROM Orion.SRM.Topology M
left join orion.nodes n on n.NodeID = m.NodeID
left join orion.Volumes v on v.VolumeID = m.VolumeID
left join orion.srm.StorageArrays sa on sa.StorageArrayID = m.StorageArrayID
left join orion.srm.LUNs l on l.LUNID = m.NetObjectID
Another question, do you know how I can manually assign the node directly to the LUN?