I'm getting following error while searching in Summary Page
Confusing thing is if I expand “Show search options” & Search it works perfectly fine.
What might be the issue?
For back-end we are using MS SQL
I'm getting following error while searching in Summary Page
Confusing thing is if I expand “Show search options” & Search it works perfectly fine.
What might be the issue?
For back-end we are using MS SQL
The error I see is:
Cannot use a CONTAINS or FREETEXT predicate on table or indexed view because it is not full-text indexed"
This usually indicates that you don't have the full-text feature installed. See also this SO question.
It could also be because you haven't created the indexes from the DDL files (link and SQL below as of Orbeon Forms 2016.2):
CREATE FULLTEXT CATALOG orbeon_fulltext_catalog AS DEFAULT;
CREATE UNIQUE INDEX orbeon_from_data_pk ON orbeon_form_data (id);
CREATE FULLTEXT INDEX ON orbeon_form_data (xml) KEY INDEX orbeon_from_data_pk;
As per Erik's answer, I followed these steps & its working.
DROP FULLTEXT INDEX ON orbeon_form_data
CREATE FULLTEXT CATALOG orbeon_fulltext_catalog_new AS DEFAULT;
CREATE UNIQUE INDEX orbeon_from_data_pk_new ON orbeon_form_data (id);
CREATE FULLTEXT INDEX ON orbeon_form_data (xml) KEY INDEX orbeon_from_data_pk_new;