hi all
i have a sccm db i need to get all system hardware info where sql server is installed
result set should be
sql version
system processor info
can u help on this
- Edited by ashwin08 21 hours 25 minutes ago
Technology Tips and News
hi all
i have a sccm db i need to get all system hardware info where sql server is installed
result set should be
sql version
system processor info
can u help on this
You can use a query based on v_GS_installed_Software and v_GS_Computer_System SQL views, something like:
select
*
from
v_GS_installed_Software vIS
join
v_GS_Computer_System vSC
on
vIS.ResourceID=vSC.ResourceID
where
vIS.ProductName0 like '%SQL Server%'