次の方法で共有


IsFullTextInstalled プロパティ

SQL Server のインスタンスにフルテキスト サービスがインストールされているかどうかを示す Boolean 値を取得します。

名前空間:  Microsoft.SqlServer.Management.Smo
アセンブリ:  Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)

構文

'宣言
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property IsFullTextInstalled As Boolean
    Get
'使用
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

プロパティ値

型: System. . :: . .Boolean
SQL Server のインスタンスにフルテキスト サービスがインストールされているかどうかを示す Boolean 値です。
True の場合、フルテキスト サービスがインストールされています。それ以外の場合は、False (既定値) です。

実装

IServerInformation. . :: . .IsFullTextInstalled

使用例

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

関連項目

参照

Planning a SQL Server Installation

その他の技術情報