sys.dm_fts_outstanding_batches

full-text
#full-text#dmv

Description

Returns information about each full-text indexing batch.

Syntax

SELECT database_id, table_id, COUNT(*) AS batch_count FROM sys.dm_fts_outstanding_batches GROUP BY database_id, table_id ;
GO