Método FullTextIndex.Create (Boolean)

Creates a full-text index on the instance of SQL Server as defined by the FullTextIndex object with the option to specify whether the full-text index is automatically populated after columns are added or removed.

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

Sintaxe

'Declaração
Public Sub Create ( _
    noPopulation As Boolean _
)
'Uso
Dim instance As FullTextIndex 
Dim noPopulation As Boolean

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

Parâmetros

  • noPopulation
    Tipo: 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.

Exemplos

Implementando a pesquisa de texto completo

Consulte também

Referência

FullTextIndex Classe

Sobrecarregado Create

Namespace Microsoft.SqlServer.Management.Smo

Outros recursos

Visão geral da pesquisa de texto completo

CREATE FULLTEXT INDEX (Transact-SQL)