Поделиться через


Класс AffinityInfo

The AffinityInfo object represents the Affinity settings for all CPUs and NUMA nodes on an Instance of SQL Server. Access to the AffinityInfo object is provided though the Server object.

Иерархия наследования

System. . :: . .Object
  Microsoft.SqlServer.Management.Smo..::..AffinityInfo

Пространство имен:  Microsoft.SqlServer.Management.Smo
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public NotInheritable Class AffinityInfo _
    Implements IAlterable, IScriptable
'Применение
Dim instance As AffinityInfo
public sealed class AffinityInfo : IAlterable, 
    IScriptable
public ref class AffinityInfo sealed : IAlterable, 
    IScriptable
[<SealedAttribute>]
type AffinityInfo =  
    class
        interface IAlterable
        interface IScriptable
    end
public final class AffinityInfo implements IAlterable, IScriptable

Тип AffinityInfo обеспечивает доступ к следующим элементам.

Свойства

  Имя Описание
Открытое свойство AffinityType Gets or Sets the AffinityType()()()() member of the AffinityInfo class. Valid values are Auto or Manual.
Открытое свойство Cpus The Cpus()()()() member is a collection that represents the CPU settings for all CPUs on an Instance of SQL Server.
Открытое свойство NumaNodes The NumaNode()()()() member is a collection that contains the NUMA node settings for an Instance of SQL Server.
Открытое свойство Parent This gets the parent object of the AffinityInfo object. This value is the same as the Server object that contains the AffinityInfo()()()() member.

В начало

Методы

  Имя Описание
Открытый метод Alter This method updates the server with the current values in the AffinityInfo class.
Открытый метод Equals (Производный от Object.)
Защищенный метод Finalize (Производный от Object.)
Открытый метод GetHashCode (Производный от Object.)
Открытый метод GetType (Производный от Object.)
Защищенный метод MemberwiseClone (Производный от Object.)
Открытый метод Refresh This method fills in the Cpus()()()() and NumaNode()()()() with the local server settings.
Открытый метод Script() () () () Generates a Transact-SQL script that can be used to re-create the instance of SQL Server affinity settings as specified in the AffinityInfo object.
Открытый метод Script(ScriptingOptions) Generates a Transact-SQL script that can be used to re-create the instance of SQL Server affinity settings as specified in the AffinityInfo object.
Открытый метод ToString (Производный от Object.)

В начало

Замечания

To get AffinityInfo object properties, users can be a member of the public fixed server role.

To set any AffinityInfo object properties and run the Alter method, users must have ALTER permission on the database.

To create a AffinityInfo object, users must have ALTER ANY APPLICATION role permission on the parent database.

To drop an AffinityInfo object, users must be the owner of the application role or have ALTER ANY APPLICATION role permission on the parent database.

To grant, deny, and revoke permission on the AffinityInfo object, users must have CONTROL permission on the application role.

Примеры

This example shows you how to set all of the CPU’s on an instance of SQL Server to hard affinity.

C#

using System;
using Microsoft.SqlServer.Management.Smo;

namespace samples
{
    class Program
    {
        static void Main(string[] args)
        {
            Server dbServer = new Server("(local)");
            dbServer.AffinityInfo.AffinityType = AffinityType.Manual;

            foreach (Cpu cpu in dbServer.AffinityInfo.Cpus)
                cpu.AffinityMask = true;

            dbServer.AffinityInfo.Alter();
        }
    }
}

Powershell

//Create the server. 
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")

//Set the Affinity Type
$dbServer.AffinityInfo.AffinityType = [Microsoft.SqlServer.Management.Smo.AffinityType]'Manual'

//Set each CPU to Hard affinity and update
foreach ($cpu In $dbServer.AffinityInfo.Cpus)
{
   $cpu.AffinityMask = $True
   $dbServer.AffinityInfo.Alter() 
}

Безопасность многопоточности

Любые открытые статический (Shared в Visual Basic) элементы этого типа потокобезопасны. Потокобезопасность с элементами экземпляров не гарантируется.