Właściwość ScriptingOptions.FullTextStopLists
Pobiera lub ustawia Boolean wartości właściwość, który określa, czy list stop pełnego tekstu 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 FullTextStopLists As Boolean
Get
Set
'Użycie
Dim instance As ScriptingOptions
Dim value As Boolean
value = instance.FullTextStopLists
instance.FullTextStopLists = value
public bool FullTextStopLists { get; set; }
public:
property bool FullTextStopLists {
bool get ();
void set (bool value);
}
member FullTextStopLists : bool with get, set
function get FullTextStopLists () : boolean
function set FullTextStopLists (value : boolean)
Wartość właściwości
Typ: System.Boolean
A Boolean wartość określająca, czy list stop pełnego tekstu są uwzględniane w wygenerowanym script.
Jeśli True, pełnego tekstu stop list znajdują się w skrypcie wygenerowanym.W przeciwnym razie False (domyślnie).
Przykłady
Poniższy przykład kodu Określa, że będą inicjowane przez skrypty list stop pełnego tekstu.
Visual Basic
Dim scOps As New ScriptingOptions()
scOps.FullTextIndexes = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions
$scOps.FullTextIndexes = $TRUE
Zobacz także