我在SqlServer的varbinary列上创建了一个全文搜索索引,并为它添加了一个类型列。我想知道,如果我将类型列的值保留为null或为空或“。”,那么将会发生什么我开始全文搜索?
1, Will SqlServer analysis the document type by varbinary value?
2, Will the record be updated in fulltext catalog?
3, Can fulltext search work in the record?
答案 0 :(得分:0)
我现在知道答案了。我在MSSQL / LogSQLFT * ** .LOG
下找到全文搜索日志我在扩展名为空的表格中插入了一些文档,启动了全文自动填充,但它会说“警告:在表或索引视图 *的全文索引弹出期间未找到适当的过滤器,该行的某些列未编入索引。“
所以答案是
1, Will SqlServer analysis the document type by varbinary value?
----no,sqlserver know the document type only type the type column.
2, Will the record be updated in fulltext catalog?
----no
3, Can fulltext search work in the record?
----no