Hello,
I've a custom entitys persons with custom fields status and funktion, both multi-selected. In entity there are 125.000 records.
I've search-fields status and funktion in list-view of entity person.
Basis-filter of the person-list is all records.
With added search-field funktion as search of persons which contains someone of <one of the options>, I get the right answer,
with added seach-field status as seach of persons which contains someone of <one of the options> I get: no result, no records ... but there are 25.000 records
Run with a DatabaseManager - I use DBWorkbench, but also Adminer or phpMYadmin:
-> select name, first_name, status from personen where status like '%Entscheider*in' -> 0 records
-> select name, first_name, status from personen where status like '%Entscheider*in%' -> 25.000 records
I've tried with different gender-signs (/in, ;in, *in) in options -> all the same results -> 0 records
I've updated the database table person with update personen set status = replace(status, ':', '*') where status is not null
If I search in espo for is empty I get 123.000 records ????
In field funktion there are 61 options (also many with gender-signs), in status there are 8 options.
Why does the search for funktion work and the search for status does not?
I'am helpless ...
Christoph
I've a custom entitys persons with custom fields status and funktion, both multi-selected. In entity there are 125.000 records.
I've search-fields status and funktion in list-view of entity person.
Basis-filter of the person-list is all records.
With added search-field funktion as search of persons which contains someone of <one of the options>, I get the right answer,
with added seach-field status as seach of persons which contains someone of <one of the options> I get: no result, no records ... but there are 25.000 records
Run with a DatabaseManager - I use DBWorkbench, but also Adminer or phpMYadmin:
-> select name, first_name, status from personen where status like '%Entscheider*in' -> 0 records
-> select name, first_name, status from personen where status like '%Entscheider*in%' -> 25.000 records
I've tried with different gender-signs (/in, ;in, *in) in options -> all the same results -> 0 records
I've updated the database table person with update personen set status = replace(status, ':', '*') where status is not null
If I search in espo for is empty I get 123.000 records ????
In field funktion there are 61 options (also many with gender-signs), in status there are 8 options.
Why does the search for funktion work and the search for status does not?
I'am helpless ...
Christoph
Comment