1

数据库信息:

Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production
"CORE   11.2.0.3.0  Production"
TNS for Linux: Version 11.2.0.3.0 - Production
NLSRTL Version 11.2.0.3.0 - Production

设置:

CREATE TABLE my_contains_test(    
   USERID VARCHAR2(8) NOT NULL,
   SEARCH VARCHAR2(40),
   CONSTRAINT contains_test_pk PRIMARY KEY (USERID)
);

INSERT ALL
INTO my_contains_test VALUES ('HUNTERW','Willie Hunter')
INTO my_contains_test VALUES ('HUWU','Will Hu')
SELECT * FROM dual;

create index ind_contains_test on my_contains_test(search) indextype is ctxsys.context;

询问:

select m.*, contains(search, 'will% and hu%', 1) as c_result from my_contains_test m;

结果:

    USERID   SEARCH         C_RESULT
    HUNTERW  Willie Hunter  4
    HUWU     Will Hu        0

这是第二条记录(C_RESULT == 0)的好结果吗?我不知道发生了什么。

这是好的部分。将名称更改为不同的名称,例如WillietoBillieWillto Bill,查询到:

select m.*, contains(search, 'bill% and hu%', 1) as c_result from my_contains_test m;

结果是正确的:

USERID  SEARCH          C_RESULT
HUNTERW Billie Hunter   4
HUWU    Bill Hu         4

因此,改变一个位置会使其工作方式不同。我不知道那是怎么回事。如何解决它的任何想法都会很棒。

4

1 回答 1

1

一个单词will在英语的默认停止列表中,默认情况下它不被索引。
请参阅此链接:http ://docs.oracle.com/cd/B28359_01/text.111/b28304/astopsup.htm#CEGBGCDF

创建您自己的停止列表并在索引中使用它,尝试此代码(您必须已授予对 ctx_dll 的执行权限):

drop index ind_contains_test;
exec CTX_DDL.CREATE_STOPLIST('my_empty_stoplist','BASIC_STOPLIST');
create index ind_contains_test on my_contains_test(search) 
indextype is ctxsys.context parameters('stoplist my_empty_stoplist');

select m.*, contains(search, 'will% and hu%', 1) as c_result 
from my_contains_test m;

USERID   SEARCH                                     C_RESULT
-------- ---------------------------------------- ----------
HUNTERW  Willie Hunter                                     4 
HUWU     Will Hu                                           4 
于 2013-08-16T21:39:32.657 回答