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 に答える