Page 1 of 1

Dashes and exact phrase

Posted: Tue Jul 02, 2002 4:15 pm
by jkj2001
I think this question is nearly identical to the one I sent a few days ago, but just in case not:

We have someone running a search like this:

select count(DOCID) indexcnt from tbldoc where (tbldoc.ADDRESSEE LIKE '"water/testing"')

We're using double-quotes to indicate an exact phrase search, and while the search does return hits eventually, it takes a good while. Much longer than searching for "water" or "testing" alone. I figure Texis must be doing a linear search? Just for yuks I put a backslash in the term "water\/testing", but that led to zero hits returned.

Below is the index on the field in question. Thanks again, guys:


tsql "set keepnoise='on';set delexp=0;set addexp='\alnum{1,99}';set addexp='>>\a
lpha{1,50},=\alpha{1,50}';create metamorph inverted index idxmtbldoc_ADDRESSEE on tbldoc(ADDRESSEE);"

Dashes and exact phrase

Posted: Tue Jul 02, 2002 4:50 pm
by mark
Yes. It's exactly the same thing as http://thunderstone.master.com/texis/ma ... 3d1c9d7d11
Please read the response there thoroughly.