I am receiving an Inconsistent Result Set when I execute two searches.
Here is the first select. (works fine)
select field1, field2 from tablename where Title\Body likep 'cow' and topics\categories like 't_02' and LastPost >= '01/01/01'
Here is the second select. (returns no rows)
select field1, field2 from tablename where Title\Body likep 'ben' and topics\categories like 't_02' and LastPost >= '01/01/01'
The only difference is the value in the quotes after the likep word. Both searches should retrieve many rows.
FYI - I received the following error when I execute the second search.
<!-- 115 /search
Query `t_02' would require post-processing: Index expression(s) do not match term `t_02' -->
<!-- 115 /search
Query 't_02' would require linear search -->
Any ideas ?
Here is the first select. (works fine)
select field1, field2 from tablename where Title\Body likep 'cow' and topics\categories like 't_02' and LastPost >= '01/01/01'
Here is the second select. (returns no rows)
select field1, field2 from tablename where Title\Body likep 'ben' and topics\categories like 't_02' and LastPost >= '01/01/01'
The only difference is the value in the quotes after the likep word. Both searches should retrieve many rows.
FYI - I received the following error when I execute the second search.
<!-- 115 /search
<!-- 115 /search
Any ideas ?