best bets
Posted: Mon Jul 11, 2005 3:51 pm
It is not currently possible to enable suffix processing with LIKEIN.
I tried with tsql to create a table, index it, and query it.
create table test(x varchar(20));
insert into test values('chair');
insert into test values('e-statement');
create metamorph counter index ix2 on test(x);
set minwordlen=5;
select * from test where x likein 'chair';
select * from test where x likein 'chairs';
select * from test where x likein 'e-statement';
drop table test;
I tried with tsql to create a table, index it, and query it.
create table test(x varchar(20));
insert into test values('chair');
insert into test values('e-statement');
create metamorph counter index ix2 on test(x);
set minwordlen=5;
select * from test where x likein 'chair';
select * from test where x likein 'chairs';
select * from test where x likein 'e-statement';
drop table test;