Count Logical and Physical CPUs
For you SQL Server inventory you need to have number of CPUs on the host. You can do it by running MSINFO32.exe through the command prompt which will give you information as below:
From this you have to read the required information and save it where required.
If you want to use a T-SQL query to get the CPU count information then following is the query which uses sys.dm_os_sys_info DMV to count logical and physical CPUs on the SQL Server host:
It will give you output as follows:
From this you have to read the required information and save it where required.
If you want to use a T-SQL query to get the CPU count information then following is the query which uses sys.dm_os_sys_info DMV to count logical and physical CPUs on the SQL Server host:
It will give you output as follows:
Comments