I am struggling to combine these two queries so that I can get a list of computer models and the installed wireless driver on it.
Any help would be great. Thanks.
SELECT
Model0 AS Model,
COUNT(*) AS Count
FROM
v_GS_COMPUTER_SYSTEM
GROUP BY Model0
select count(name0),Name0 from v_GS_NETWORK_ADAPTER where
v_GS_NETWORK_ADAPTER.Description0 like '%Wireless%'
group by Name0
Hi Leo,
apologies for the delay. here is the combined SQL query.
SELECT
Model0 AS Model,
COUNT(*) AS Count
FROM
v_GS_COMPUTER_SYSTEM cs
inner join v_GS_NETWORK_ADAPTER na on na.ResourceID=cs.ResourceID
where na.Description0 like '%Wireless%'
GROUP BY Model0
4 Comments
I am struggling to combine these two queries so that I can get a list of computer models and the installed wireless driver on it.
Any help would be great. Thanks.
SELECT
Model0 AS Model,
COUNT(*) AS Count
FROM
v_GS_COMPUTER_SYSTEM
GROUP BY Model0
select count(name0),Name0 from v_GS_NETWORK_ADAPTER where
v_GS_NETWORK_ADAPTER.Description0 like '%Wireless%'
group by Name0
Hi Leo,
apologies for the delay. here is the combined SQL query.
SELECT
Model0 AS Model,
COUNT(*) AS Count
FROM
v_GS_COMPUTER_SYSTEM cs
inner join v_GS_NETWORK_ADAPTER na on na.ResourceID=cs.ResourceID
where na.Description0 like '%Wireless%'
GROUP BY Model0
thanks,
Eswar
http://www.eskonr.com
is it possible to get the user for the computer?
yes,it is possible to get user for the computer and can get it from v_r_system or v_r_user.
Thanks
Eswar