我使用的是哪个停止列表?
Which stoplist am I using?
如何确定哪个非索引字表与我的全文索引相关联?
试试这个。
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
table 中可用,但要获取其他相关信息 fulltext_catalog
加入 fulltext_indexes
table
如何确定哪个非索引字表与我的全文索引相关联?
试试这个。
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
table 中可用,但要获取其他相关信息 fulltext_catalog
加入 fulltext_indexes
table