SQL Server Enterprise 2019 not core 21 up to

Nguyen ngoc giang 0 Reputation points
2024-12-26T04:30:18.3066667+00:00

Currently, I am using Windows Server 2016 and SQL Server Enterprise 2019, but the SQL system only utilizes 20 cores, even though I have allocated 60 cores to the server.

I have tried the following commands:

EXEC sp_configure 'affinity mask', 0;

EXEC sp_configure 'affinity64 mask', 0;

RECONFIGURE;

I have also checked whether the operating system detects the cores and reviewed the NUMA configuration, which shows that NUMA nodes from 3 onward are offline.

How can I bring the offline NUMA nodes online?

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
14,242 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,500 questions
SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,623 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Jon Gurgul 6 Reputation points Microsoft Employee
    2024-12-31T17:43:50.2566667+00:00

    SQL Server 2019 (15.x) Enterprise (Core License) will support more than 20 cores per SQL Server Instance.

    You can check your installed Edition with the following

    SELECT SERVERPROPERTY('Edition')
    

    Note that without Core-based licensing you would be limited to 20 cores per SQL Server Instance.

    Enterprise edition with Server + Client Access License (CAL) licensing is limited to 20 cores per SQL Server instance. (This licensing isn't available for new agreements.) There are no limits under the Core-based Server Licensing model.

    https://learn.microsoft.com/en-us/sql/sql-server/compute-capacity-limits-by-edition-of-sql-server?view=sql-server-ver16

    Please consult with your licensing team to verify whether you have the correct licensing but you may have accidently installed the incorrect software edition. If you have Core-based licensing then you can follow the supported upgrade paths or perform a new install.

    Supported Upgrade Paths

    https://learn.microsoft.com/en-us/sql/database-engine/install-windows/supported-version-and-edition-upgrades-2019?view=sql-server-ver16#-edition-upgrade

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.