FullTextIndex.Alter 메서드 (Boolean)

Updates any FullTextIndex object property changes on the instance of SQL Server with the option to specify whether the full-text index is automatically populated after columns are added or removed. 

네임스페이스:  Microsoft.SqlServer.Management.Smo
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
Public Sub Alter ( _
    noPopulation As Boolean _
)
‘사용 방법
Dim instance As FullTextIndex 
Dim noPopulation As Boolean

instance.Alter(noPopulation)
public void Alter(
    bool noPopulation
)
public:
void Alter(
    bool noPopulation
)
member Alter : 
        noPopulation:bool -> unit
public function Alter(
    noPopulation : boolean
)

매개 변수

  • noPopulation
    유형: System.Boolean
    A Boolean value that specifies whether the full-text index is automatically populated after columns are added or removed.If True, the full-text index is not automatically populated after columns are added or removed.If False, the full-text index is automatically populated after columns are added or removed.

주의

The Alter method updates any changes that have been made to the FullTextIndex object's properties since the FullTextIndex object was created or since the last Alter statement. The modifications are combined and sent to the instance of SQL Server in a single network trip to the instance of SQL Server.

전체 텍스트 검색 구현

참고 항목

참조

FullTextIndex 클래스

Alter 오버로드

Microsoft.SqlServer.Management.Smo 네임스페이스

관련 자료

전체 텍스트 검색 개요

CREATE FULLTEXT INDEX(Transact-SQL)