您当前的位置: 首页 > 数据库教程 > Oracle教程 > Oracle如何对CLOB行字段来执行全文检索

Oracle如何对CLOB行字段来执行全文检索

作者:guanchaofeng 来源:不详 发布时间: 2009-09-30 08:36 点击:
本文讲解Oracle如何对CLOB行字段来执行全文检索。 大家知道,超过4000字的文本一般存储在CLOB中(MSQL、Sysbase是存放在Text中),在Oracle8i版本,对大字段CLOB仍然不支持在where子句直接的Like操作,如何实现对存储在CLOB字段中的内容进行Like查找呢? 下

Oracle如何对CLOB行字段来执行全文检索

本文讲解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如何对CLOB行字段来执行全文检索"由远航站长收集整理而来,仅供大家学习与参考使用。更多网站制作教程尽在远航站长站。
顶一下
(0)
0%
踩一下
(0)
0%
[点击 次] [返回上一页] [打印]
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 密码: 验证码:
关于本站 - 联系我们 - 网站声明 - 友情连接- 网站地图 - 站点地图 - 返回顶部
Copyright © 2007-2013 www.yhzhan.com(远航站长). All Rights Reserved .
远航站长:为中小站长提供最佳的学习与交流平台,提供网页制作与网站编程等各类网站制作教程.
官方QQ:445490277 网站群:26680406 网站备案号:豫ICP备07500620号-4