Hello everyone,
We want to make sure our D2 Client perform properly when xPlore is disabled/stooped. Our Content Server was installed with xPlore.
Thanks!
Yongjian
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Hi,
The dfc.properties under C:\Documentum\config is most likely the one for Content Server; you should update the dfc.properties for the client.
If you want to disable fulltext search for D2, set dfc.search.xquery.generation.enable=false in the D2 dfc.properties file.
If you set this to false, DFC replaces DQL full-text clauses by LIKE clauses on the following attributes: object_name, title, subject. This means that you are no longer searching on the content, only on metadata (case sensitive!).
If you want to disable completely disable xPlore, you can simply uninstall it.
If uninstallin is not an option, you can set dfc.search.xquery.generation.enable=false for each client or remove permissions for all users on the dm_ftengine_config object. If DFC cannot resolve the dm_ftengine_config object it will issue a DQL with a LIKE clause.
This is a broad subject where many options are available.
You can definitely disable xPlore fulltext search on a per client basis. This is done toggling the value for dfc.search.xquery.generation.enable in the appropriate dfc.properties file.
# If the source is hosted by DSS, XQuery can be generated from the query
# builder.By default this property is set to true. XQuery will be the default
# language if it is supported by the Indexer.
#
dfc.search.xquery.generation.enable = true
Let us know how it goes.
I will try that.
Which dfc.properties file shall I put this in? The one under C:\Documentum\config?
Also, this flag means not using xquery, right? But by using DQL only, full text search is still available? And full text search still goes through xPlore, right? If so, is it possible to completely disable xPlore?
Thanks.
Thank you very much for the detailed explanation.