Freigeben über


IsFullTextInstalled-Eigenschaft

Ruft den Boolean-Wert ab, der angibt, ob der Volltextdienst auf der SQL Server-Instanz installiert ist.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property IsFullTextInstalled As Boolean
    Get
'Usage
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

Eigenschaftswert

Typ: System. . :: . .Boolean
Ein Boolean-Wert, der angibt, ob der Volltextsuchdienst für die SQL Server-Instanz installiert ist.
Wenn der Wert True ist, ist der Volltextsuchdienst installiert. Der Standardwert ist allerdings False.

Implementiert

IServerInformation. . :: . .IsFullTextInstalled

Beispiele

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

Siehe auch

Verweis

Planning a SQL Server Installation

Andere Ressourcen