Wildcard query expansion resulted in too many term

2019-03-04 05:53发布

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条回答
我欲成王,谁敢阻挡
2楼-- · 2019-03-04 06:09

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).

查看更多
登录 后发表回答