Oracle全文檢索索引學習(一)

來源:互聯網
上載者:User

作業系統:windows xp
Oracle 10g  10.2
記憶體:512M
資料庫全裝: 必須要用CTXSYS使用者.
以下是建立最簡單支援英文的全文檢索索引
--刪除text使用者
Drop User text;

-- 建立text使用者
create user text
  identified by text
  default tablespace USERS
  temporary tablespace TEMP;
-- Grant/Revoke role privileges
grant resource to text with admin option;
grant connect to text with admin option;

--將CTXAPP使用者的許可權賦予TEXT用,
Grant CTXAPP  to  text  with  Admin  Option;

--將HR使用者下的EMPLOREE表和資料拷貝到text使用者下
 
--建立一個preference:( ----設定搜尋器類型) 
BEGIN
ctx_ddl.create_preference ('main_lexer', 'chinese_lexer');
ctx_ddl.create_preference('mywordlist', 'BASIC_WORDLIST');
ctx_ddl.set_attribute('mywordlist','PREFIX_INDEX','TRUE');
ctx_ddl.set_attribute('mywordlist','PREFIX_MIN_LENGTH',1);
ctx_ddl.set_attribute('mywordlist','PREFIX_MAX_LENGTH', 5);
ctx_ddl.set_attribute('mywordlist','SUBSTRING_INDEX', 'YES');

END;

--釋放preference
BEGIN
ctx_ddl.drop_preference ('main_lexer');
ctx_ddl.drop_preference ('mywordlist');
END;

--瀏覽自己創造的preference
SELECT * FROM ctx_user_preferences ;

--建立索引
Drop Index myindex;

--如果不顯示的指定索引參數,系統會自動探測文本語言,資料類型和文檔格式
CREATE INDEX myindex ON EMPLOREE(first_name) INDEXTYPE IS CTXSYS.Context;

/*如上命令建立了一個預設參數的CONTEXT索引myindex.系統預設:
1. 文本儲存在資料庫中。可以是CLOB, BLOB, BFILE, VARCHAR2, or CHAR類型的文本資料。
2. 文本列語言是資料庫建立時的預設的字元集。
3. 使用資料庫預設的終止目錄stoplist.stoplist記錄存在於文本列中但不對其索引的詞。
4. 允許模糊查詢。模糊查詢闡述用%表示*/

select * from EMPLOREE where contains(first_name,'D%A%') >0;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.