一个oracle棘手问题
我想使用oracle的internedia进行全文检索,在oracle中做了如下设置,但总是查不到数据。请问有谁知道问题出在哪里? 1)
create table test_doc(test_id char(1), doc blob);
2)
往上述表中装入数据,其中blob数据通过plsql developer装入。
3)
begin
ctx_ddl.create_preference('test_lexer', 'CHINESE_VGRAM_LEXER');
end;
4)
create index idx_test_doc on test_doc(doc)
indextype is ctxsys.context
parameters ('DATASTORE CTXSYS.DIRECT_DATASTORE
FILTER CTXSYS.INSO_FILTER
LEXER shwxd.test_lexer');
5)
select title from test_doc
where contains(doc,'中文',1)>0;
无任何结果,望高手指点.......