Udostępnij za pośrednictwem


Właściwość Server.IsFullTextInstalled

Pobiera Boolean wartość, która określa, czy usługa pełnotekstowa jest zainstalowana na wystąpienie programu SQL Server.

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

Składnia

'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property IsFullTextInstalled As Boolean
    Get
'Użycie
Dim instance As Server
Dim value As Boolean

value = instance.IsFullTextInstalled
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public bool IsFullTextInstalled { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
virtual property bool IsFullTextInstalled {
    bool get () sealed;
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
abstract IsFullTextInstalled : bool
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
override IsFullTextInstalled : bool
final function get IsFullTextInstalled () : boolean

Wartość właściwości

Typ: System.Boolean
A Boolean wartość, która określa, czy usługa pełnotekstowa jest zainstalowana na wystąpienie SQL Server.
Jeśli True, jest zainstalowana usługa pełnotekstowa.W przeciwnym razie False (domyślnie).

Implementacje

IServerInformation.IsFullTextInstalled

Przykłady

C#

Server srv = new Server("(local)");
Console.WriteLine("Full-Text service is installed: " + srv.FullTextInstalled.ToString()

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "Full-Text service is installed:" $srv.FullTextInstalled

Zobacz także

Odwołanie

Planning a SQL Server Installation

Inne zasoby