Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Intermedia search does not return matches to lead-off text
Hello,
I believe I am having a somewhat unique problem that has not been resolved by dropping and recreating the context index. I am running two sets of tablespaces with a context index on each. Dropping and recreating the index on one tablespace solved this problem, but has not fixed the problem on the other.
All assets where I happen to full-text query on the lead-off text have to be queried with a % in front of the name. As in the example below where the lead-off text is 'nikon001.dsc' the only way to successfully return a match is by querying on '%nikon001.dsc'. I have been able to determine that this is the case for every search where the string I am looking for is the lead-off value of the TEXT column (datatype LONG) in the UOI_TEXT table.
The text column in uoi_text for this asset is: nikon001.dsc OTHER 1021653525818-2
Here the search succeeds:
SQL> select uoi_id from uois where CONTAINS(CONTENT_STATE, '%nikon001.dsc',
8) > 0;
UOI_ID
Fails without the % in front:
SQL> select uoi_id from uois where CONTAINS(CONTENT_STATE, 'nikon001.dsc',
8) > 0;
no rows selected
Any ideas? Or has anyone else experienced this problem?
Mike Johnson Received on Mon Jul 22 2002 - 12:06:17 CDT
![]() |
![]() |