如何确定哪个停止列表与我的全文索引相关联?
答案 0 :(得分:1)
试试这个。
SELECT FI.fulltext_catalog_id,
FI.stoplist_id,
FS.stopword
FROM sys.fulltext_indexes FI
LEFT JOIN sys.fulltext_stopwords FS
ON fi.stoplist_id = fs.stoplist_id
注意: sys.fulltext_stopwords
表格中提供了所选信息,但要获取与fulltext_catalog
加入fulltext_indexes
表相关的其他信息