次の方法で共有


BatchSize プロパティ

バッチ ターミネータまでのステートメント数を取得または設定します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
Public Property BatchSize As Integer
    Get
    Set
'使用
Dim instance As ScriptingOptions
Dim value As Integer

value = instance.BatchSize

instance.BatchSize = value
public int BatchSize { get; set; }
public:
property int BatchSize {
    int get ();
    void set (int value);
}
member BatchSize : int with get, set
function get BatchSize () : int
function set BatchSize (value : int)

プロパティ値

型: System. . :: . .Int32
バッチ ターミネータが挿入される前にスクリプト化される INSERT ステートメントの数を示す Int32 値です。

説明

このプロパティの既定値は 1 です。

使用例

次のコード例では、スクリプトのバッチ サイズを 10 に設定します。

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.BatchSize = 10

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.BatchSize = 10