instr和substr存储过程,分析内部大对象的内容

instr函数与substr函数
instr函数用于从指定的位置开始,从大型对象中查找第N个与模式匹配的字符串。
用于查找内部大对象中的字符串的instr函数语法如下:
dbms_lob.instr(
lob_loc in blob,
pattern in raw,
offset in integer := 1;
nth in integer := 1)
return integer; dbms_lob.instr(
lob_loc in clob character set any_cs,
pattern in varchar2 character set lob_loc%charset,
offset in integer:=1,
nth in integer := 1)
return integer; lob_loc为内部大对象的定位器
pattern是要匹配的模式
offset是要搜索匹配文件的开始位置
nth是要进行的第N次匹配 substr函数
substr函数用于从大对象中抽取指定数码的字节。当我们只需要大对象的一部分时,通常使用这个函数。
操作内部大对象的substr函数语法如下:
dbms_lob.substr(
lob_loc in blob,
amount in integer := 32767,
offset in integer := 1)
return raw; dbms_lob.substr(
lob_loc in clob character set any_cs,
amount in integer := 32767,
offset in integer := 1)
return varchar2 character set lob_loc%charset;
其中各个参数的含义如下:
lob_loc是substr函数要操作的大型对象定位器
amount是要从大型对象中抽取的字节数
offset是指从大型对象的什么位置开始抽取数据。
如果从大型对象中抽取数据成功,则这个函数返回一个 raw 值。如果有一下情况,则返回null:
1 任何输入参数尾null
2 amount < 1
3 amount > 32767
4 offset < 1
5 offset > LOBMAXSIZE
示例如下: declare
source_lob clob;
pattern varchar2(6) := 'Oracle';
start_location integer := 1;
nth_occurrence integer := 1;
position integer;
buffer varchar2(100);
begin
select clob_locator into source_lob from mylobs where lob_index = 4;
position := dbms_lob.instr(source_lob, pattern, start_location, nth_occurrence);
dbms_output.put_line('The first occurrence starts at position:' || position); nth_occurrence := 2;
select clob_locator into source_lob from mylobs where lob_index = 4;
position := dbms_lob.instr(source_lob, pattern, start_location, nth_occurrence);
dbms_output.put_line('The first occurrence starts at position:' || position); select clob_locator into source_lob from mylobs where lob_index = 5;
buffer := dbms_lob.substr(source_lob, 9, start_location);
dbms_output.put_line('The substring extracted is: ' || buffer);
end;
/
The first occurrence starts at position:8
The first occurrence starts at position:24
The substring extracted is: Oracle 9i PL/SQL 过程已成功完成。

作者:hellofei

最新文章

  1. html表单提交方式
  2. yii获取当前url和域名
  3. notepad++快捷键大全
  4. php 获取代码执行时间和消耗的内存
  5. Mysql学习笔记(十)存储过程与函数 + 知识点补充(having与where的区别)
  6. Linux(Ubuntu)下面SecureCRT 完全破解
  7. bat操作数据库mysql
  8. unix 环境高级编程-读书笔记与习题解答-第二篇
  9. Orchard开源ASP.NET MVC CMS简介
  10. CENTOS 挂载硬盘
  11. Python用Pillow(PIL)进行简单的图像操作
  12. B-day7
  13. python 7
  14. VSCode Snippet 小试牛刀
  15. dp的斜率优化
  16. 【游记】NOIP2018 退役滚粗记
  17. [/usr/local/openssl//.openssl/include/openssl/ssl.h] Error 127
  18. 使用SCSS扩展Bootstrap4
  19. 1)Linux程序设计入门--基础知识
  20. Apache服务器运维笔记(2)----使用apxs来进行编译安装 mod_txt 模块

热门文章

  1. react中的ref在input中的详解
  2. .NET平台历程介绍
  3. c++11多线程记录1 -- std::thread
  4. Netty源码分析之NioEventLoop(三)—NioEventLoop的执行
  5. RSA非对称 私钥加密
  6. JavaWeb 之 JSON
  7. Installation of SAP on RAC with Oracle ASM(转)
  8. leetcode 学习心得 (1) (24~300)
  9. github hooks 配置教程 钩子搭建(实测通过,手把手教程)
  10. Apache 正向代理与反向代理配置