‎08-28-2013 12:52 PM
Select Top 1000000 web40repIPLocationlist.IPLocation As [IP Location],
tblAssetCustom.AssetID,
tblAssets.AssetUnique,
Case When tblAssetCustom.Model Like '%virtual%' Then 'Virtual' Else 'Physical'
End As Hardware,
tblAssets.IPAddress As [IP Address],
tblOperatingsystem.Caption As [Operating System],
tblAssetCustom.Custom12 As [Responsible for backup],
tblAssetCustom.Custom6 As [Backup to Disk],
tblAssetCustom.Custom7 As [Retention Time],
tblAssetCustom.Custom8 As [Backup to Tape]
From tblAssetCustom
Inner Join tblAssets On tblAssetCustom.AssetID = tblAssets.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Inner Join tblAssetGroups On tblAssetGroups.AssetGroupID =
tblAssetGroupLink.AssetGroupID
Inner Join web40repIPLocationlist On web40repIPLocationlist.AssetID =
tblAssets.AssetID
Where tblAssetGroups.AssetGroup Like '%All Server%'
Order By [IP Address]
Solved! Go to Solution.
‎08-29-2013 07:14 PM
C1Hol wrote:
I don't get any Linux Servers in this Report. When i open the Asset Groups every Asset is shown.
Select Top 1000000 tsysIPLocations.IPLocation,
tblAssetCustom.AssetID,
tblAssets.AssetName,
Case When tblAssetCustom.Model Like '%virtual%' Then 'Virtual' Else 'Physical'
End As Hardware,
tblAssets.IPAddress As [IP Address],
tblOperatingsystem.Caption As [Operating System],
tblAssetCustom.Custom12 As [Responsible for backup],
tblAssetCustom.Custom6 As [Backup to Disk],
tblAssetCustom.Custom7 As [Retention Time],
tblAssetCustom.Custom8 As [Backup to Tape]
From tblAssetCustom
Inner Join tblAssets On tblAssetCustom.AssetID = tblAssets.AssetID
Left Join tblOperatingsystem On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Inner Join tblAssetGroups On tblAssetGroups.AssetGroupID =
tblAssetGroupLink.AssetGroupID
Left Join tsysIPLocations On tblAssets.IPNumeric >= tsysIPLocations.StartIP
And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Where tblAssetGroups.AssetGroup Like '%all server%'
Order By [IP Address]
C1Hol wrote:
Is it possible to re-arrange the custom fields in the Asset Overview. Like moving the data from Custom13 to Custom8 for every Asset
UPDATE tblAssetCustom
SET Custom8 = tblAssetCustom.Custom13
FROM tblAssetCustom
C1Hol wrote:
Are there any plans to integrate Custom Drop-downs or Checkboxes?
‎08-29-2013 07:14 PM
C1Hol wrote:
I don't get any Linux Servers in this Report. When i open the Asset Groups every Asset is shown.
Select Top 1000000 tsysIPLocations.IPLocation,
tblAssetCustom.AssetID,
tblAssets.AssetName,
Case When tblAssetCustom.Model Like '%virtual%' Then 'Virtual' Else 'Physical'
End As Hardware,
tblAssets.IPAddress As [IP Address],
tblOperatingsystem.Caption As [Operating System],
tblAssetCustom.Custom12 As [Responsible for backup],
tblAssetCustom.Custom6 As [Backup to Disk],
tblAssetCustom.Custom7 As [Retention Time],
tblAssetCustom.Custom8 As [Backup to Tape]
From tblAssetCustom
Inner Join tblAssets On tblAssetCustom.AssetID = tblAssets.AssetID
Left Join tblOperatingsystem On tblAssets.AssetID = tblOperatingsystem.AssetID
Inner Join tblAssetGroupLink On tblAssets.AssetID = tblAssetGroupLink.AssetID
Inner Join tblAssetGroups On tblAssetGroups.AssetGroupID =
tblAssetGroupLink.AssetGroupID
Left Join tsysIPLocations On tblAssets.IPNumeric >= tsysIPLocations.StartIP
And tblAssets.IPNumeric <= tsysIPLocations.EndIP
Where tblAssetGroups.AssetGroup Like '%all server%'
Order By [IP Address]
C1Hol wrote:
Is it possible to re-arrange the custom fields in the Asset Overview. Like moving the data from Custom13 to Custom8 for every Asset
UPDATE tblAssetCustom
SET Custom8 = tblAssetCustom.Custom13
FROM tblAssetCustom
C1Hol wrote:
Are there any plans to integrate Custom Drop-downs or Checkboxes?
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now