次の方法で共有


ScriptingOptions.ClusteredIndexes プロパティ

クラスター化インデックスを定義するステートメントを、生成されるスクリプトに含めるかどうかを示す Boolean プロパティ値を取得または設定します。

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

構文

'宣言
Public Property ClusteredIndexes As Boolean 
    Get 
    Set
'使用
Dim instance As ScriptingOptions 
Dim value As Boolean 

value = instance.ClusteredIndexes

instance.ClusteredIndexes = value
public bool ClusteredIndexes { get; set; }
public:
property bool ClusteredIndexes {
    bool get ();
    void set (bool value);
}
member ClusteredIndexes : bool with get, set
function get ClusteredIndexes () : boolean 
function set ClusteredIndexes (value : boolean)

プロパティ値

型: System.Boolean
クラスター化インデックスを定義するステートメントを、生成されるスクリプトに含めるかどうかを示す Boolean 値です。 True の場合、クラスター化インデックスがスクリプトに含まれます。False (既定値) の場合、警告トークンは置き換えられません。

説明

このプロパティが適用されるのは、SQL Server テーブルのスクリプト作成時だけです。

使用例

次のコード例では、クラスター化インデックスを定義するステートメントをスクリプトに含めるように指定します。

Visual Basic

Dim scOps As New ScriptingOptions()
scOps.ClusteredIndexes = true

PowerShell

$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.ClusteredIndexes = $TRUE

関連項目

参照

ScriptingOptions クラス

Microsoft.SqlServer.Management.Smo 名前空間

その他の技術情報

スクリプト