作業系統: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;