oracle 全文檢索索引

來源:互聯網
上載者:User

標籤:style   color   使用   資料   ar   sql   type   ef   

一、使用 sys 使用者登入oracle

(1)運行—cmd—sqlplus — sys/密碼 @串連字元 as sysdba

二、授權

1、grant ctxapp to 全文檢索索引使用使用者;

2、grant execute on ctx_dll to 全文檢索索引使用使用者;

3、全文檢索索引使用使用者 登入oracle 可以通過 pl/sql 介面登入;以下操作都是在pl/sql 介面操作。

三、建立分析器

BEGIN
  --設定詞法分析器 名稱:‘oratext_lexer‘,類型:‘chinese_vgram_lexer‘
ctx_ddl.create_preference (‘oratext_lexer‘, ‘chinese_vgram_lexer‘); 

END;

四、建立表索引

CREATE INDEX 索引名稱 ON 表名(欄位) indextype IS ctxsys.context parameters(‘lexer ORATEXT_LEXER‘); --分析器名稱
commit;

以上就是索引建完了,可以測試有無錯誤:SELECT * FROM ctx_USER_index_errors

可以使用語句查詢:select *  from 表 a  where contains(a.name, ‘產量‘) > 0  order by a.name;

五、索引最佳化(用於資料變動時:添加、刪除、修改)

BEGIN

索引同步:
   ctx_ddl.sync_index(‘IDX_QueryDAtaCol‘);

索引最佳化:
  ctx_ddl.optimize_index(‘IDX_QueryDAtaCol‘, ‘full‘);

  END;

六、切詞 把片語切分重組

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.