Wildcard query expansion resulted in too many terms

人盡茶涼 提交于 2019-12-18 09:48:03

问题


I am receiving a "wildcard query expansion resulted in too many terms" error when executing a query similar to the following:

SELECT *
  FROM table_a
 WHERE contains(clob_field, '%a%') > 0;

Does anyone know a workaround/solution to this problem?


回答1:


According to this, you may need to increase the wildcard_maxterms parameter, or take further steps. See the link for details (I'm not an expert in Oracle Text though).



来源:https://stackoverflow.com/questions/2554054/wildcard-query-expansion-resulted-in-too-many-terms

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!