摘要: 查找Clob字段中包含指定记录的方法select count(*) from game_article t where dbms_lob.instr(t.content, utl_raw.cast_to_raw(convert('duowan.com','utf8')), 1, 1) > 0或者select count(*) from game_article t where dbms_lo... 阅读全文
posted @ 2010-03-25 18:49 hellofei 阅读(793) 评论(0) 推荐(0) 编辑
摘要: dbms_lob包学习笔记之三:instr和substr存储过程http://wwwwwfco.itpub.net/post/5073/27882instr和substr存储过程,分析内部大对象的内容instr函数与substr函数instr函数用于从指定的位置开始,从大型对象中查找第N个与模式匹配的字符串。用于查找内部大对象中的字符串的instr函数语法如下:dbms_lob.instr(lob... 阅读全文
posted @ 2010-03-25 15:54 hellofei 阅读(11381) 评论(0) 推荐(0) 编辑
摘要: Oracle中的Raw类型解释http://space.e800.com.cn/sunnyboy/entity/view/?id=17404   RAW,类似于CHAR,声明方式RAW(L),L为长度,以字节为单位,作为数据库列最大2000,作为变量最大32767字节。  LONG RAW,类似于LONG,作为数据库列最大存储2G字节的数据,作为变量最大32760字节  建表操作:  create... 阅读全文
posted @ 2010-03-25 14:44 hellofei 阅读(7094) 评论(0) 推荐(1) 编辑