다음을 통해 공유


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

관련 자료