
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-29-2009 12:56 PM
Hi!
I use this query to list computers without our antivirus:
I would like to exclude the computers where the software never has been scanned (we still have some..).
Anyone got any ideas how to do this?
Cheers
I use this query to list computers without our antivirus:
Select tblcomputers.Computername From tblcomputers Where tblcomputers.Computername Not In (Select dbo.tblSoftware.ComputerName From dbo.tblSoftware Where dbo.tblSoftware.softwareName Like 'Trend Micro OfficeScan Client')
I would like to exclude the computers where the software never has been scanned (we still have some..).
Anyone got any ideas how to do this?
Cheers
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-29-2009 02:44 PM
Works great!
Thanks!
Thanks!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-29-2009 01:26 PM
Select tblcomputers.Computername From tblcomputers Where (tblcomputers.Computername Not In (Select dbo.tblSoftware.ComputerName From dbo.tblSoftware Where dbo.tblSoftware.softwareName Like 'Trend Micro OfficeScan Client')) and (computername in (select computername from tblsoftware))
