
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-30-2013 07:21 PM
Select Top 1000000 tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Memory,
tblDiskdrives.FileSystem,
tblDiskdrives.Freespace,
tblDiskdrives.Size,
tsysOS.OSname,
tsysOS.OScode As icon,
tblProcessor.Name
From tblAssetCustom
Inner Join tblAssets On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblProcessor On tblAssets.AssetID = tblProcessor.AssetID,
tsysOS
I'm trying to create a report for brand, model, processor, OS, memory, disk size, disk used, and age of device. When I run the report, there are multiple lines with same asset, but with different OS names for each line, all of which are repeated several times, then the entire chunk for that asset is displayed again, but without the file system or free space.
I'm very new to this so any help would be greatly appreciated!
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-31-2013 09:56 PM
You haven't linked tsysOS to anything. Please try the report below instead.
Select Top 1000000 tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Memory,
tblDiskdrives.FileSystem,
tblDiskdrives.Freespace,
tblDiskdrives.Size,
tsysOS.OSname,
tsysOS.OScode As icon,
tblProcessor.Name
From tblAssetCustom
Inner Join tblAssets On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblProcessor On tblAssets.AssetID = tblProcessor.AssetID
inner join tsysOS on tblAssets.OScode = tsysOS.OScode
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2013 09:56 PM
You haven't linked tsysOS to anything. Please try the report below instead.
Select Top 1000000 tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.PurchaseDate,
tblAssetCustom.Warrantydate,
tblAssets.AssetID,
tblAssets.AssetUnique,
tblAssets.Memory,
tblDiskdrives.FileSystem,
tblDiskdrives.Freespace,
tblDiskdrives.Size,
tsysOS.OSname,
tsysOS.OScode As icon,
tblProcessor.Name
From tblAssetCustom
Inner Join tblAssets On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblProcessor On tblAssets.AssetID = tblProcessor.AssetID
inner join tsysOS on tblAssets.OScode = tsysOS.OScode
