Answers for "in a sql server how many cores do i need"

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 "in a sql server how many cores do i need"

Code answers related to "SQL"

Browse Popular Code Answers by Language