1.给操作用户授权
GRANT
GRANT execute ON ctxsys.ctx_cls
GRANT execute ON ctxsys.ctx_ddl
GRANT execute ON ctxsys.ctx_doc
GRANT execute ON ctxsys.ctx_output TO user01;
GRANT execute ON ctxsys.ctx_query TO user01;
GRANT execute ON ctxsys.ctx_report
GRANT execute ON ctxsys.ctx_thes
GRANT execute ON ctxsys.ctx_ulexer TO user01;
2.执行创建索引
-- 创建全文索引
BEGIN
END;
CREATE INDEX
3.删除全文索引
-- 删除全文索引
drop index 索引名称 force
4.出错:创建全文索引时提示无效的文本列
Oracle中创建全文索引,
只能在类型:VARCHAR2, CLOB, BLOB, CHAR, BFILE, XMLType, and
URIType上创建;
不能在类型:NCLOB,NVARCHAR2,NCHAR,DATE,NUMBER,TIMESTAMP上创建。