I am setting up full text search on an existing database. We have Document table with the following schema:
我正在现有数据库上设置全文搜索。我们有Document表,其中包含以下模式:
ID int Not Null,
Data varbinary(max) Not Null
MimeType varchar Not Null
I want to use full text search on the data column, using the mimetype to specify the document type.
我想在数据列上使用全文搜索,使用mimetype指定文档类型。
I was hoping it would be possible to register new types into whatever tables are used when you use the view sys.fulltext_document_types
. Is this possible?
我希望可以在使用视图sys.fulltext_document_types时将新类型注册到所使用的任何表中。这可能吗?
1 个解决方案
#1
No it isn't possible. IFilters are mapped to a document extension. A new column has to be added and populated.
不,这是不可能的。 IFilter映射到文档扩展名。必须添加和填充新列。
#1
No it isn't possible. IFilters are mapped to a document extension. A new column has to be added and populated.
不,这是不可能的。 IFilter映射到文档扩展名。必须添加和填充新列。