共用方式為


ScriptingOptions.BatchSize 屬性

Gets or sets the number of statements after which to script batch terminator.

命名空間:  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
A Int32 value that indicates the number of insert statements that are scripted before a batch terminator is inserted.

備註

The default for this property is 1.

範例

The following code example sets the scripts batch size to 10.

Visual Basic

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

PowerShell

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

請參閱

參考

ScriptingOptions 類別

Microsoft.SqlServer.Management.Smo 命名空間

其他資源

指令碼