Hello,
We are running SQL Server 2016 Standard with SP1 and are running into an issue with it recognizing cores on the machine.
Server Info:
Microsoft SQL Server 2016 (SP1) (KB3182545) - 13.0.4001.0 (X64) Oct 28 2016 18:17:30 Copyright (c) Microsoft Corporation Standard Edition (64-bit) on Windows Server 2012 R2 Standard 6.3 <X64> (Build 9600: ) (Hypervisor)
Results from querying sys.dm_os_schedulers
select scheduler_id, cpu_id, status, is_online
from sys.dm_os_schedulers
where status = 'VISIBLE ONLINE'
scheduler_idcpu_idstatusis_online
00VISIBLE ONLINE1
11VISIBLE ONLINE1
22VISIBLE ONLINE1
33VISIBLE ONLINE1
The server has 8 cores available that I'd like to use. Any advice on how to correct the issue would be great.
Thanks!
Eric