SQL Script to check number of CPU installed on the server.
Physical CPU (Core) = CPU Count / Hyper threaded Ratio
SELECT cpu_count,
hyperthread_ratio,
(cpu_count/hyperthread_ratio) as [Physical CPUs]
FROM sys.dm_os_sys_info
SQL Script to check number of CPU installed on the server.
Physical CPU (Core) = CPU Count / Hyper threaded Ratio
SELECT cpu_count,
hyperthread_ratio,
(cpu_count/hyperthread_ratio) as [Physical CPUs]
FROM sys.dm_os_sys_info