
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-25-2010 12:00 AM
I need some help with SQL....
I'm looking for a way to export a report of all computers with a particular video adapter and the driver version it is running. I can find this info by looking at CONFIG\VIDEO CARD for each pc, so I'm sure the right SQL query will give what I need.
I'm looking for all computers with: ATI RADEON HD 2400*
Any help would be appreciated.
thanks
I'm looking for a way to export a report of all computers with a particular video adapter and the driver version it is running. I can find this info by looking at CONFIG\VIDEO CARD for each pc, so I'm sure the right SQL query will give what I need.
I'm looking for all computers with: ATI RADEON HD 2400*
Any help would be appreciated.
thanks
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
‎09-27-2010 11:32 AM
try this
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblVideoController.Caption,
tblVideoController.DriverVersion
From tblComputers Inner Join
tblVideoController On tblComputers.Computername =
tblVideoController.Computername
Where tblVideoController.Caption Like 'ATI RADEON HD 2400%'
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2010 05:00 PM
that did it, thanks for the help.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2010 11:32 AM
try this
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblVideoController.Caption,
tblVideoController.DriverVersion
From tblComputers Inner Join
tblVideoController On tblComputers.Computername =
tblVideoController.Computername
Where tblVideoController.Caption Like 'ATI RADEON HD 2400%'
