→ The Lansweeper Customer Excellence Awards 2024 - Submit Your Project Now! Learn More & Enter Here

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
DMermod
Engaged Sweeper
Does anyone know if it is possible to have reports e-mailed to you only if the report changes?

I would like to be notified if any new servers show up on my custom SQL report or Server report.

Thank you,

- DRM
1 ACCEPTED SOLUTION
Hemoco
Lansweeper Alumni
You will need to modify your report to only list "new" servers. You can add the following criterion to tblAssets.firstseen to only list machines that were first discovered in the last day: > GetDate() - 1

Example:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysAssetTypes.AssetTypename = 'windows' And tblAssets.Firstseen >
GetDate() - 1 And tblAssetCustom.State = 1

View solution in original post

2 REPLIES 2
DMermod
Engaged Sweeper
I'll give this a shot. Thank you for the quick response.

- DRM
Hemoco
Lansweeper Alumni
You will need to modify your report to only list "new" servers. You can add the following criterion to tblAssets.firstseen to only list machines that were first discovered in the last day: > GetDate() - 1

Example:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tsysAssetTypes.AssetTypename = 'windows' And tblAssets.Firstseen >
GetDate() - 1 And tblAssetCustom.State = 1