当前位置: 首页 > 编程笔记 >

Oracle中instr和substr存储过程详解

班玉堂
2023-03-14
本文向大家介绍Oracle中instr和substr存储过程详解,包括了Oracle中instr和substr存储过程详解的使用技巧和注意事项,需要的朋友参考一下

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

instr函数

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 过程已成功完成。

以上所述是小编给大家介绍的Oracle中instr和substr存储过程详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!

 类似资料:
  • 本文向大家介绍Oracle中的INSTR,NVL和SUBSTR函数的用法详解,包括了Oracle中的INSTR,NVL和SUBSTR函数的用法详解的使用技巧和注意事项,需要的朋友参考一下 Oracle中INSTR的用法: INSTR方法的格式为 INSTR(源字符串, 要查找的字符串, 从第几个字符开始, 要找到第几个匹配的序号) 返回找到的位置,如果找不到则返回0. 例如:INSTR('CORP

  • 本文向大家介绍Oracle的substr和instr函数简单用法,包括了Oracle的substr和instr函数简单用法的使用技巧和注意事项,需要的朋友参考一下 Oracle的substr函数简单用法 substr(字符串,截取开始位置,截取长度) //返回截取的字 substr('Hello World',0,1) //返回结果为 'H'  *从字符串第一个字符开始截取长度为1的字符串 sub

  • 本文向大家介绍Oracle存储过程和自定义函数详解,包括了Oracle存储过程和自定义函数详解的使用技巧和注意事项,需要的朋友参考一下 概述 PL/SQL中的过程和函数(通常称为子程序)是PL/SQL块的一种特殊的类型,这种类型的子程序可以以编译的形式存放在数据库中,并为后续的程序块调用。 相同点: 完成特定功能的程序 不同点:是否用return语句返回值。 举个例子: 一旦创建了改程序并将其存储

  • 本文向大家介绍php 访问oracle 存储过程实例详解,包括了php 访问oracle 存储过程实例详解的使用技巧和注意事项,需要的朋友参考一下 php 访问oracle 存储过程实例详解 比如我的本地Oracle数据库有一个package,里面有一个存储过程: 包名是PKG_TRANS_REL,存储过程是pro_GC_withdraw,这个存储过程有四个参数,两个入参,两个出参。 在PHP中通

  • 我可以在Oracle中通过ODBC执行一批存储过程吗?存储过程具有我使用参数标记绑定的输入参数。 在SQLServer中,我有这个功能,在DB2中,我只能进行批处理插入/更新,但我不能从ODBC/C代码批处理存储过程。 Oracle似乎支持插入语句的批处理,如果使用JDBC,也可以批处理存储过程。 是否可以做同样的事情,但使用对存储过程和ODBC的调用? 谢谢

  • 本文向大家介绍asp.net中oracle 存储过程(图文),包括了asp.net中oracle 存储过程(图文)的使用技巧和注意事项,需要的朋友参考一下 在大型数据库系统中,存储过程和触发器具有很重要的作用。无论是存储过程还是触发器,都是SQL 语句和流程控制语句的集合。 ORACLE代码 C#代码 调用方法 以上内容是通过代码介绍了asp.net中oracle存储过程。 接下来通过第二种的方式