views:

326

answers:

1

I am setting up full text search on an existing database. We have Document table with the following schema:

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.

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?

A: 

No it isn't possible. IFilters are mapped to a document extension. A new column has to be added and populated.

Jack Ryan