网站首页
JSP空间
动态资讯
开源项目
技术文档
资源下载
J2EE资源
客户论坛
在线支付
 
  技术文档>>数据库技术>>Oracle技术>>Oracle开发>查看文档  
  Oracle如何对CLOB行字段来执行全文检索     
  文章作者:未知  文章来源:未知  
  查看:165次  录入:管理员--2007-06-10  
 

本文讲解Oracle如何对CLOB行字段来执行全文检索。

大家知道,超过4000字的文本一般存储在CLOB中(MSQL、Sysbase是存放在Text中),在Oracle8i版本,对大字段CLOB仍然不支持在where子句直接的Like操作,如何实现对存储在CLOB字段中的内容进行Like查找呢?

下面的文章或则能给你帮助。虽然在SQL*PLUS中能实现用Select直接看到CLOB的内容,但是如何通过DBMS_LOB包实现对中文环境下的CLOB内容的读取我一直没有找到好的方法(使用Documents中提到的Samples只适用英文字符集),这极大的限制了使用第3方软件开发工作的自由度。

表结构:

create table products( 
productid number(10) not null ,
name varchar2(255) ,
description CLOB) ;

方法:

SELECT productid, name FROM products 
WHERE dbms_lob.instr(products.description,'some text',1,1) > 0;

下面列出了DBMS_LOB包中的过程函数:

APPEND procedure Appends the contents of 
the source LOB to the destination LOB. 

CLOSE procedure Closes a previously 
opened internal or external LOB. 

COMPARE function Compares two entire 
LOBs or parts of two LOBs. 

COPY procedure Copies all, or part, 
of the source LOB to the destination LOB. 

CREATETEMPORARY procedure Creates a temporary 
BLOB or CLOB and its corresponding index 
in the user's default temporary tablespace. 

ERASE procedure Erases all or part of a LOB. 

FILECLOSE procedure Closes the file. 

FILECLOSEALL procedure Closes all previously opened files. 

FILEEXISTS function Checks if 
the file exists on the server. 

FILEGETNAME procedure Gets the 
directory alias and file name. 

FILEISOPEN function Checks if the 
file was opened using the input BFILE locators. 

FILEOPEN procedure Opens a file. 

FREETEMPORARY procedure Frees the 
temporary BLOB or CLOB in the user's default temporary tablespace. 

GETCHUNKSIZE function Returns the amount 
of space used in the LOB chunk to store the LOB value.

GETLENGTH function Gets the length of the LOB value. 

INSTR function Returns the matching position 
of the nth occurrence of the pattern in the LOB. 

ISOPEN function Checks to see if the LOB 
was already opened using the input locator. 

ISTEMPORARY function Checks if the locator 
is pointing to a temporary LOB. 

LOADFROMFILE procedure Loads 
BFILE data into an internal LOB. 

OPEN procedure Opens a LOB 
(internal, external, or temporary) in the indicated mode. 

READ procedure Reads data from 
the LOB starting at the specified offset.

SUBSTR function Returns part of the 
LOB value starting at the specified offset. 

TRIM procedure Trims the LOB 
value to the specified shorter length. 

WRITE procedure Writes data 
to the LOB from a specified offset. 

WRITEAPPEND procedure Writes a buffer to the end of a LOB.
 
 
上一篇: 理解和使用Oracle分析工具-LogMiner    下一篇: 从Access 2000数据库转移到Oracle 9i
  相关文档
实例讲解各种数据库当前日期的标准写法 02-03
教你在Oracle中实现数据自动导入导出 04-12
如何确定Oracle数据库表中重复的记录 01-15
奇怪的sql:排序方法不同但结果却是一样的 03-07
oracle 9i与10g中plan_table的不同 02-29
Oracle 9i数据库中动态重配置深入分析 04-11
将部分数据导出后导入一个统一的数据库中 03-03
循序渐进讲解oracle数据库管理员的职责 (1) 04-29
exp的版本高于数据库版本导出时出现报错 03-03
怎样不安装oracle客户端也可以系统移植 11-15
详细讲解oracle物理结构故障的处理方法 (1) 05-15
巧用"rman"的tspitr技术找回删除的表 01-31
如何对存储过程返回的结果进行条件查询 02-28
讲解oracle数据库的sysdba权限登录问题 (1) 06-05
快速掌握ora-00600 4194错误的解决方法 11-15
在oracle数据库中按用户名重建索引的方法 07-30
Oracle数据库应用系统调优方法介绍 04-11
不容忽视的oracle 10g statspack功能 02-01
数据库迁移的几种常用方式及优缺点比较 05-14
清除Oracle中无用索引 改善DML性能 04-11
返回首页 | 关于我们 | J网章程 | JSP空间合租 | 客服中心 | 免责声明 | 常见问题 | 参观机房
本站主机空间代理至厦门市华众网络科技有限公司
《中华人民共和国增值电信业务经营许可证》
编号:闽B2-20050079
@2005-2008福建JSP技术网 版权所有 闽ICP备05000928号
厦门(总部):13616026886 福州:0591-87655121
邮箱:admin@fjjsp.com 站长QQ,点击这里给我发消息