I'm trying to create a report that includes asset name, OS, IP, network mask, default gateway, DNS server(s), contact and location. I've gotten a report working with the code below, but it only includes Windows assets. I think it might be an inner join vs. left join issue based on what I've read on the site, but I've had no luck figuring out specifically what I need to change. Any help appreciated.
Select Distinct Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tblNetwork.IPAddress,
tblNetwork.IPSubnet,
tblNetwork.DefaultIPGateway,
tblNetwork.DNSServerSearchOrder As [DNS server],
tblAssetCustom.Contact,
tblAssetCustom.Location
From tblAssets
Inner Join tblNetwork On tblAssets.AssetID = tblNetwork.AssetID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Order By tblAssets.AssetName
Thanks,
Jim