Question

Vous avez une obligation de reconstruire l'index MSSQL texte intégral.
Le problème est - je dois savoir exactement quand le travail est fait. Par conséquent - il suffit d'appeler:

ALTER FULLTEXT CATALOG fooCatalog
REBUILD WITH ACCENT_SENSITIVITY = OFF  

ne fonctionne pas ou je fais quelque chose un peu mal. : /

Toutes les idées?

Était-ce utile?

La solution

Vous pouvez déterminer l'état de l'indexation du texte intégral en interrogeant les comme ceci:

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

Tableau texte intégral Populate État

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
     

suivi.

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