IsFullTextInstalled Propiedad
Obtiene el valor Boolean que especifica si el servicio de búsqueda en texto completo está instalado en la instancia de SQL Server.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property IsFullTextInstalled As Boolean
Get
'Uso
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
Valor de la propiedad
Tipo: System. . :: . .Boolean
Valor Boolean que especifica si el servicio de búsqueda en texto completo está instalado en la instancia de SQL Server.
Si es True, el servicio de búsqueda en texto completo está instalado. En caso contrario, es False (valor predeterminado).
Implementa
Ejemplos
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
Vea también
Referencia
Planning a SQL Server Installation