爱问知识人 爱问教育 医院库

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

首页

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

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

提交回答

全部答案

    2017-07-27 19:20:19
  •   大家知道,超过4000字的文本一般存储在CLOB中(MSQL、Sysbase是存放在Text中),在目前的Oracle版本(Oracle8i)中,对大字段CLOB仍然不支持在where子句直接的like操作,如何实现对存储在CLOB字段中的内容进行like查找呢?下面的文章或则能给你帮助。
      虽然在SQL*PLUS中能实现用select直接看到CLOB的内容,但是如何通过DBMS_LOB包实现对中文环境下的CLOB内容的读取我一直没有找到好的方法(使用Documents中提到的Samples只适用英文字符集),这极大的限制了使用第3方软件开发工作的自由度。
      如果那位仁兄有高招希望Email给我。 表结构: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。
       以上是我对于这个问题的解答,希望能够帮到大家。

    亚***

    2017-07-27 19:20:19

类似问题

换一换
  • 系统软件 相关知识

  • 电脑网络技术
  • 电脑网络

相关推荐

正在加载...
最新问答 推荐信息 热门专题 热点推荐
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200

热点检索

  • 1-20
  • 21-40
  • 41-60
  • 61-80
  • 81-100
  • 101-120
  • 121-140
  • 141-160
  • 161-180
  • 181-200
返回
顶部
帮助 意见
反馈

确定举报此问题

举报原因(必选):