Frage

Haben Sie eine Anforderung mssql Volltextindex neu zu erstellen.
Das Problem ist - ich muss genau wissen, wann Arbeit erledigt ist. Deshalb - nur anrufen:

ALTER FULLTEXT CATALOG fooCatalog
REBUILD WITH ACCENT_SENSITIVITY = OFF  

nicht funktioniert oder ich etwas etwas falsch zu machen. : /

Irgendwelche Ideen?

War es hilfreich?

Lösung

Sie können den Status der Volltext-Indexierung bestimmen, indem die Indizierung Eigenschaften Abfragen wie folgt aus:

SELECT FULLTEXTCATALOGPROPERTY('IndexingCatalog', 'PopulateStatus') AS Status
  

Tabelle Volltext Populate Der Status

Displays the population status of the full-text indexed table.

The possible values are as follows:

0 = Idle.

1 = Full population is in progress.

2 = Incremental population is in progress.

3 = Propagation of tracked changes is in progress.

4 = Background update index is in progress, such as automatic change
     

Tracking.

5 = Full-text indexing is throttled or pause
scroll top