其他提示

由于我还不能评论马格努斯的回答(缺乏声誉),我将在这里添加它。我发现MSDN上的信息有冲突 这个 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
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
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top