We've got an index in a database like this:
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_DOCTITLEORSUBJECT on tbldoc(DOCTITLEORSUBJECT);"
When we run the following tsql search, it takes forever for any results to come back, which isn't terribly surprising considering our database is 18 GB. However, we have a regular, unique index on the DOCID field, as well as the metamorph index on the DOCTITLEORSUBJECT field:
select count(DOCID) from tbldiscovery where DOCTITLEORSUBJECT like '"E&Y"';
When we run the search, the
count(DOCID)
------------+
Appears quickly, which indicates we're doing a linear search. Do you happen to know if our search term "E&Y" is excluded from any index searching? Thanks. We're on your Solaris version of Texis, version 3.01.984591953
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_DOCTITLEORSUBJECT on tbldoc(DOCTITLEORSUBJECT);"
When we run the following tsql search, it takes forever for any results to come back, which isn't terribly surprising considering our database is 18 GB. However, we have a regular, unique index on the DOCID field, as well as the metamorph index on the DOCTITLEORSUBJECT field:
select count(DOCID) from tbldiscovery where DOCTITLEORSUBJECT like '"E&Y"';
When we run the search, the
count(DOCID)
------------+
Appears quickly, which indicates we're doing a linear search. Do you happen to know if our search term "E&Y" is excluded from any index searching? Thanks. We're on your Solaris version of Texis, version 3.01.984591953