
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2015 08:13 PM
The following report works find and produces a list of 4,700+ devices.
When I add the WarrantyEndDate field so I can run an asset management report, I can only see Dell devices (a total of 1144).
Assistance in running the full report with Warranty End Dates (where applicable), would be helpful.
Thanks!
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.State = 1
When I add the WarrantyEndDate field so I can run an asset management report, I can only see Dell devices (a total of 1144).
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblWarrantyDetails.WarrantyEndDate
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblWarranty On tblAssets.AssetID = tblWarranty.AssetId
Inner Join tblWarrantyDetails On tblWarranty.WarrantyId =
tblWarrantyDetails.WarrantyId
Where tblAssetCustom.State = 1
Assistance in running the full report with Warranty End Dates (where applicable), would be helpful.
Thanks!
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2015 11:17 PM
Most of your assets must have no entries in the warranty tables. Try changing the INNER joins on tblWarranty and tblWarrantyDetails to LEFT joins. You should see blank values where there is no warranty end date instead of the entire row being eliminated from the result set. (See here and here for details on the difference between inner and left joins.)
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2015 11:17 PM
Most of your assets must have no entries in the warranty tables. Try changing the INNER joins on tblWarranty and tblWarrantyDetails to LEFT joins. You should see blank values where there is no warranty end date instead of the entire row being eliminated from the result set. (See here and here for details on the difference between inner and left joins.)
