1

我在 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?
4

1 回答 1

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
于 2013-06-17T02:17:09.067 回答