Rafael Colucci
Rafael Colucci

Reputation: 6078

Full text population progress - SQL Server 2008

Does anyone knows how to query a full text catalog population to see its progress in SQL Server 2008?

Upvotes: 2

Views: 798

Answers (1)

Quassnoi
Quassnoi

Reputation: 425763

sys.dm_fts_index_population

SELECT  *
FROM    sys.dm_fts_index_population

Upvotes: 2

Related Questions