Quantcast
Channel: SQL Server Database Engine forum
Viewing all articles
Browse latest Browse all 12963

The affinity mask specified does not match the CPU mask on this system.

$
0
0

We are having a problem with one of our SQL servers, and in comparing it to the backup server which is working fine, I noticed some differences. I attempted to correct the differences, but no luck.

The dell server has 4 dual-core processors and at one point hyper-threading was enabled. One of our DBAs recommended that it be turned off. We didn't have any major problems until recently and it seems that getting this setting right is the lynchpin. Any suggestions?

 

John

 

 

EXEC

sys.sp_configure N'show advanced options', N'1'RECONFIGUREWITHOVERRIDE

GO

EXEC

sys.sp_configure N'affinity mask', N'0'

GO

EXEC

sys.sp_configure N'affinity I/O mask', N'0'

GO

RECONFIGURE

WITHOVERRIDE

GO

EXEC

sys.sp_configure N'show advanced options', N'0'RECONFIGUREWITHOVERRIDE

GO

 

-----------------------------------------

 

Configuration option 'show advanced options' changed from 0 to 1. Run the RECONFIGURE statement to install.

Msg 5832, Level 16, State 1, Line 1

The affinity mask specified does not match the CPU mask on this system.

Msg 15123, Level 16, State 1, Procedure sp_configure, Line 51

The configuration option 'affinity mask' does not exist, or it may be an advanced option.

Msg 15123, Level 16, State 1, Procedure sp_configure, Line 51

The configuration option 'affinity I/O mask' does not exist, or it may be an advanced option.

Msg 5832, Level 16, State 1, Line 1

The affinity mask specified does not match the CPU mask on this system.

Configuration option 'show advanced options' changed from 1 to 0. Run the RECONFIGURE statement to install.

Msg 5832, Level 16, State 1, Line 1

The affinity mask specified does not match the CPU mask on this system.


Viewing all articles
Browse latest Browse all 12963

Trending Articles