USE AdventureWorks2012;
SELECT *
FROM sys.dm_fts_index_keywords(DB_ID(‘AdventureWorks2012’), OBJECT_ID(‘Production.Document’) )
ORDER BY document_count
Column name | Data type | Description | ||
---|---|---|---|---|
keyword | nvarchar(4000) | The hexadecimal representation of the keyword stored inside the full-text index.
|
||
display_term | nvarchar(4000) | The human-readable format of the keyword. This format is derived from the hexadecimal format.
|
||
column_id | int | ID of the column from which the current keyword was full-text indexed. | ||
document_count | int | Number of documents or rows containing the current term.
|
You may need to rebuild to get the latest
ALTER FULLTEXT CATALOG chinese REBUILD WITH ACCENT_SENSITIVITY = OFF