any help with this would be greatly appreciated.
I am trying to create a report that includes all our VM servers and Physical servers that reports System Name, IP address and OS and version or patch level.
I have this
SELECT TOP 10000 Nodes.Caption AS NodeName,
Nodes.IP_Address AS ESX_Host_IP_Address,
VirtualMachines.DisplayName AS VM_Host,
VirtualMachines.IPAddress AS VM_Host_IP_Address,
VirtualMachines.GuestState AS GuestState,
VirtualMachines.OperatingSystem AS OperatingSystem,
Nodes.NodeID AS NodeID,
VirtualMachines.NodeID AS NodeID_1
FROM
VirtualMachines INNER JOIN Nodes ON (VirtualMachines.HostNodeID = Nodes.NodeID)
But how do I add the physcal servers to this so that report catches all our servers?
Thanks in Advance for any help