
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-18-2011 11:07 AM
Hi,
i need an SQL Query for all Computers, that have not installed .NET Framework 4.
In case i use "Where <table> Not Like '%framework 4 client%'", i get every software that's not .NET Framework 4.
But i need a list of Computers wich have no .NET
Thanks folks
i need an SQL Query for all Computers, that have not installed .NET Framework 4.
In case i use "Where <table> Not Like '%framework 4 client%'", i get every software that's not .NET Framework 4.
But i need a list of Computers wich have no .NET
Thanks folks
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
‎02-21-2011 12:21 PM
This is the full sql:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain
From tblComputers
Where tblComputers.Computername Not In (Select tblsoftware.ComputerName
From tblsoftware Where tblsoftware.softwareName Like '%framework 4 client%')
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-22-2011 10:08 AM
Yeah, thank you very much for your help.


Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2011 12:21 PM
This is the full sql:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain
From tblComputers
Where tblComputers.Computername Not In (Select tblsoftware.ComputerName
From tblsoftware Where tblsoftware.softwareName Like '%framework 4 client%')

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-18-2011 12:38 PM
you need to specify the where clause like this
where tblcomputers.computername not in (select computername from tblsoftware where sofwarename like '%framework 4 client%')

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2011 09:54 AM
Lansweeper wrote:
you need to specify the where clause like thiswhere tblcomputers.computername not in (select computername from tblsoftware where sofwarename like '%framework 4 client%')
Thanks for your Reply. But your Code doesn't work or me.
Im not very good with SQL 😉
