
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2015 10:04 AM
Hi there,
I need to create a very simple report to show all of my users for 2 mails domain, and without "prestataire, interimaire and stagiaire".
Easy, yes my report works, but I don't know why I've some users duplication.
I have only 3 columns with unique entry, so what ?
Here is my query, if you have an idea 🙂
Many thanks,
Kreg
I need to create a very simple report to show all of my users for 2 mails domain, and without "prestataire, interimaire and stagiaire".
Easy, yes my report works, but I don't know why I've some users duplication.
I have only 3 columns with unique entry, so what ?
Here is my query, if you have an idea 🙂
Select Top 1000000 tblAssets.AssetID,
tblAssets.Username,
tblADusers.Firstname,
tblADusers.Lastname,
tblADusers.email
From tblAssets
Left Join tblADusers On tblADusers.Username = tblAssets.Username And
tblADusers.Userdomain = tblAssets.Userdomain
Where tblAssets.Username Is Not Null And tblADusers.Firstname Is Not Null And
tblADusers.Lastname Is Not Null And tblADusers.Lastname Not Like
'%PRESTATAIRE%' And tblADusers.Lastname Not Like '%STAGIAIRE%' And
tblADusers.Lastname Not Like '%INTERIMAIRE%' And
((tblADusers.email Is Not Null And tblADusers.email Like '%MyDomain1%') Or
tblADusers.email Like '%MyDomain2%')
Many thanks,
Kreg
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
‎03-25-2015 12:05 PM
You've linked tblADusers to tblAssets, which stores asset data. You are listing all of your assets and the user details of the last user to be logged into each asset. If a user account is the last logged on user of multiple assets, it will be listed multiple times, once for each asset.
If you are simply trying to report on AD user information, there's no need to include tblAssets. Remove the table from your report by, in the visual representation of the report in the upper section of the report builder, hitting the in the upper right corner of the table.
If you are simply trying to report on AD user information, there's no need to include tblAssets. Remove the table from your report by, in the visual representation of the report in the upper section of the report builder, hitting the
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2015 02:14 PM
An AD user's status (enabled/disabled) cannot be included in reports, as this information isn't stored in the database. You can however have stale user accounts removed from the database by enabling the appropriate database cleanup option under Configuration\Scanning Setup\Server Options. Cleanups are performed when the Lansweeper Server service is started and subsequently every 24 hours.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2015 01:22 PM
Oh yes, you are right! Thanks 🙂
Now, i haven't got duplicate.
But I guess it's remaining some "non active" users.
Is there any way to hide non active users like it's possible to hide non active computer ?
Thanks again,
Kreg
Now, i haven't got duplicate.
But I guess it's remaining some "non active" users.
Is there any way to hide non active users like it's possible to hide non active computer ?
Thanks again,
Kreg
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-25-2015 12:05 PM
You've linked tblADusers to tblAssets, which stores asset data. You are listing all of your assets and the user details of the last user to be logged into each asset. If a user account is the last logged on user of multiple assets, it will be listed multiple times, once for each asset.
If you are simply trying to report on AD user information, there's no need to include tblAssets. Remove the table from your report by, in the visual representation of the report in the upper section of the report builder, hitting the in the upper right corner of the table.
If you are simply trying to report on AD user information, there's no need to include tblAssets. Remove the table from your report by, in the visual representation of the report in the upper section of the report builder, hitting the
