cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
njett
Engaged Sweeper III
Does anyone have a report or SQL Query to see what PC's have reported in using LSPUSH? I searched the Forum and the built-in reports but couldn't find one.

Thanks,
Nik
2 REPLIES 2
njett
Engaged Sweeper III
Thanks Nick.VDB.

I actually came up with virtually the same thing except I added the StateName as well:

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.LastLsPush,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblState.Statename
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblState On tblState.State = tblAssetCustom.State
Where tblAssets.LastLsPush Is Not Null And tblAssetCustom.State = 1
Nick_VDB
Champion Sweeper III
The report below should give back the information that you are after. Instructions for adding this report to your Lansweeper installation can be found here. If you are interested in building or modifying reports, we do recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
  • Making use of our database dictionary, which explains in great detail what each database table and field stores. More information on the dictionary can be found here.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.LastLsPush,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where (tblAssets.LastLsPush != '' Or tblAssets.LastLsPush Is Not Null)
And tblAssetCustom.State = 1