buck.woody
LinkedIn | FaceBook | Twitter
Resume
I ran into a licensing question the other day on Physical versus Logical Processors. Happily, Microsoft only charges you for Physical sockets - which you can find with this query:
SELECT
cpu_count / hyperthread_ratio AS PhysicalCPUs
FROM
sys.dm_os_sys_info
And then this query will show you how many logical Processors SQL Server "sees" for the Instance:
cpu_count AS logicalCPUs
PingBack from http://microsoft-sharepoint.simplynetdev.com/t-sql-to-find-physical-and-logical-processors/