如何定义全文索引的重建是否完成?

问题描述 投票:14回答:3

具有重建mssql全文索引的要求。问题是-我需要确切地知道何时完成工作。因此-只需调用:

ALTER FULLTEXT CATALOG fooCatalog
REBUILD WITH ACCENT_SENSITIVITY = OFF  

无效,或者我做错了一些事情。 :/

有什么想法吗?

sql-server full-text-indexing
3个回答
18
投票

您可以通过查询indexing properties来确定全文索引的状态:

SELECT FULLTEXTCATALOGPROPERTY('IndexingCatalog', 'PopulateStatus') AS 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

跟踪。

5 = Full-text indexing is throttled or pause

4
投票

由于我尚无法评论Magnus的回答(声誉欠佳),因此我将在此处添加。根据this MSDN link,我发现MSDN上存在信息冲突。根据我引用的链接,PopulateStatus具有以下列出的10个可能的值:

0 = Idle.

1 = Full population in progress

2 = Paused

3 = Throttled

4 = Recovering

5 = Shutdown

6 = Incremental population in progress

7 = Building index

8 = Disk is full.  Paused.

9 = Change tracking

3
投票
SELECT name, case FULLTEXTCATALOGPROPERTY(name, 'PopulateStatus') 
    when 0 then 'Idle'
    when 1 then ' Full population in progress'
    when 2 then ' Paused'
    when 3 then ' Throttled'
    when 4 then ' Recovering'
    when 5 then ' Shutdown'
    when 6 then ' Incremental population in progress'
    when 7 then ' Building index'
    when 8 then ' Disk is full.  Paused.'
    when 9 then ' Change tracking' end AS Status
from sys.fulltext_catalogs
© www.soinside.com 2019 - 2024. All rights reserved.