Cpu.AffinityMask Property
Gets or sets the AffinityMask member of the Cpu class.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Bildirim
Public Property AffinityMask As Boolean
Get
Set
'Kullanım
Dim instance As Cpu
Dim value As Boolean
value = instance.AffinityMask
instance.AffinityMask = value
public bool AffinityMask { get; set; }
public:
property bool AffinityMask {
bool get ();
void set (bool value);
}
member AffinityMask : bool with get, set
function get AffinityMask () : boolean
function set AffinityMask (value : boolean)
Property Value
Type: System.Boolean
Returns a Boolean that shows the current affinity mask setting for the CPU that is represented by this Cpu instance.
Remarks
Access to the Cpu class is though the Cpus collection.
To change the CPU settings on an instance of SQL Server, users must have ALTER permission on the database.
Examples
The following code example shows how to display the affinity setting for each CPU in the local instance of SQL Server.
C#
using System;
using Microsoft.SqlServer.Management.Smo;
namespace samples
{
class Program
{
static void Main(string[] args)
{
Server dbServer = new Server("(local)");
dbServer.Refresh();
foreach(Cpu cpu in dbServer.AffinityInfo.Cpus)
Console.WriteLine("Affinity is {0} for CPU ID {1}.",
(cpu.AffinityMask) ? "set" : "not set",
cpu.ID);
}
}
}
Powershell
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbServer.Refresh()
Foreach ($cpu in $dbServer.AffinityInfo.Cpus)
{
If ($cpu.AffinityMask = $TRUE)
{
Write-Host "Affinity is set for" $cpu.ID
}
Else
{
Write-Host "Affinity is not set for" $cpu.ID
}