CpuCollection.SetAffinityToRange メソッド (Int32, Int32, Boolean)
指定した範囲で CPU に対する Affinity Mask を設定します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Sub SetAffinityToRange ( _
startCpuId As Integer, _
endCpuId As Integer, _
affinityMask As Boolean _
)
'使用
Dim instance As CpuCollection
Dim startCpuId As Integer
Dim endCpuId As Integer
Dim affinityMask As Boolean
instance.SetAffinityToRange(startCpuId, _
endCpuId, affinityMask)
public void SetAffinityToRange(
int startCpuId,
int endCpuId,
bool affinityMask
)
public:
void SetAffinityToRange(
int startCpuId,
int endCpuId,
bool affinityMask
)
member SetAffinityToRange :
startCpuId:int *
endCpuId:int *
affinityMask:bool -> unit
public function SetAffinityToRange(
startCpuId : int,
endCpuId : int,
affinityMask : boolean
)
パラメーター
- startCpuId
型: System.Int32
CPU の範囲の開始を指定する、0 ~ Count -1 の int です。 startIndex が有効範囲内でない場合は、Specified argument was out of the range of valid values. Parameter name: startIndex という例外が返されます。
- endCpuId
型: System.Int32
範囲の endIndex を指定する int です。 endIndex は、startIndex 以上および [P:Microsoft.SqlServer.Management.Smo.CpuCollection.Count.] 未満である必要があります。 endIndex が有効範囲内でない場合は、Specified argument was out of the range of valid values. Parameter name: endIndex という例外が返されます。endIndex が startIndex 未満である場合は、The specified range of CPUs is not valid. The value for startIndex must be less than the value for endIndex. という例外が返されます。
- affinityMask
型: System.Boolean
true の場合、指定された範囲内の個々の CPU に対して関係が設定されます。 false の場合、指定した範囲内の個々の CPU から関係が削除されます。
使用例
次の例では、SQL Server のインスタンスの各 CPU に対する関係を設定する方法を示します。
C#
using System;
using System.Collections.Specialized;
using System.Data;
using Microsoft.SqlServer.Management.Smo;
namespace samples
{
class Program
{
static void Main(string[] args)
{
Server dbServer = new Server("(local)");
dbServer.AffinityInfo.AffinityType = AffinityType.Manual;
dbServer.AffinityInfo.Alter();
dbServer.AffinityInfo.Cpus.SetAffinityToRange(0,
dbServer.AffinityInfo.Cpus.Count-1,
true);
}
}
}
Powershell
$dbServer = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$dbServer.AffinityInfo.AffinityType = [Microsoft.SqlServer.Management.Smo.AffinityType]'Manual'
$dbServer.AffinityInfo.Alter()
$dbServer.AffinityInfo.Cpus.SetAffinityToRange(0, $dbServer.AffinityInfo.Cpus.Count-1, $TRUE)