Udostępnij za pośrednictwem


Właściwość ScriptingOptions.NonClusteredIndexes

Pobiera lub ustawia Boolean wartości właściwość, który określa, czy indeksami nieklastrowanymi są uwzględniane w wygenerowanym script.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Składnia

'Deklaracja
Public Property NonClusteredIndexes As Boolean
    Get
    Set
'Użycie
Dim instance As ScriptingOptions
Dim value As Boolean

value = instance.NonClusteredIndexes

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

Wartość właściwości

Typ: System.Boolean
A Boolean wartość określająca, czy indeksami nieklastrowanymi są uwzględniane w wygenerowanym script.
Jeśli True, indeksami nieklastrowanymi są uwzględniane w skrypcie wygenerowanym.W przeciwnym razie False (domyślnie).

Przykłady

Poniższy przykład kodu Określa, że będą inicjowane przez skrypty indeksami nieklastrowanymi.

Visual Basic

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

PowerShell

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