请教各位高手:
关于oracle text全文索引问题
首选项datastore选择file_datastore出现问题,索引提示建立成功,但DR$DOC_INDEX$I表为空。索引创建过程如下:创建用户:
create user textsearch identified by textsearch;
授权:
grant connect,resource,ctxapp to textsearch;建表:
Create table docs (
                   id number primary key, 
   title varchar2(100), 
   text varchar2(400));Insert into docs values(1, 'test1','1.doc');
Insert into docs values(2, 'test2','2.pdf');
Insert into docs values(3, 'test3','3.doc');文件存放在文件系统的d:\docs设置首选项如下:BEGIN 
ctx_ddl.create_preference('textsearch.doc_datastore', 'File_DATASTORE'); 
ctx_ddl.set_attribute('textsearch.doc_datastore','PATH', 'd:\docs');  
ctx_ddl.create_preference('textsearch.doc_mylexer', 'WORLD_LEXER');
ctx_ddl.create_preference('textsearch.doc_myfilter','INSO_FILTER'); 
end;创建索引:
Create index doc_index on docs(text)
indextype is ctxsys.context parameters
('datastore textsearch.doc_datastore 
  filter textsearch.doc_myfilter
  lexer  textsearch.doc_mylexer
  section group ctxsys.html_section_group');索引提示建立成功,但DR$DOC_INDEX$I表为空。
检索select ID, TITLE, TEXT from DOCS where contains(text,'全文')>0结果为空。