With the release of WorkSite Indexer 8.5 SP3, Autonomy introduced a new configuration designed for customers with strict security or confidentiality concerns. The new setting allows you to mark a document as either indexable or not indexable, so you could control whether certain documents data gets indexed and saved onto the IDOL server. The IndexableFlag parameter in the Connector configuration is used to denote which column in the database is used for this setting, and the IndexableFlagValue determines what the value of that column should be in order to mark the document as Indexable.
It’s a nice feature to add, but the problem customers may face is that this is turned on by
Before you start building your new full text index, you will want to see how many documents have COMINDEX set to ‘Y’. This can be done with the following query:
select count(*) from mhgroup.docmaster where COMINDEX = ‘Y’
You should then run the following query to change these to ‘N’, so they all will be flagged as Indexable by IDOL. Note: Please run this query at your own risk on a test copy of your database to ensure no other issues arise.
update mhgroup.docmaster set COMINDEX = ‘N’ where COMINDEX = ‘Y’
If you have any specific document types or metadata that require their content to NOT be indexed, then set the COMINDEX value to ‘Y’ for those specific documents. This would need to be done on all iManage databases.
After all required indexable documents are set up properly, you can then start your full text build. Please note you can also change which column is used for the ReindexableFlag, but there are some disadvantages to changing this: 1) it would need to be some other boolean column is not being used for other purposes, and 2) your custom change would be overwritten if you ever re-deployed the configuration files from the Deploy Tool.