Answers for "How can I tell how many Cores SQL Server is actually using?"

SQL
0

How can I tell how many Cores SQL Server is actually using?

SELECT scheduler_id, 
       cpu_id, 
       STATUS, 
       is_online
FROM sys.dm_os_schedulers; 
GO
Posted by: Guest on September-21-2021

Code answers related to "How can I tell how many Cores SQL Server is actually using?"

Code answers related to "SQL"

Browse Popular Code Answers by Language