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.
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)
語法
'宣告
Public Sub Create ( _
noPopulation As Boolean _
)
'用途
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
)
參數
- 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.