Chinaunix首页 | 论坛 | 博客
  • 博客访问: 709813
  • 博文数量: 94
  • 博客积分: 1937
  • 博客等级: 上尉
  • 技术积分: 1618
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-04 18:46
个人简介

专注数据库开发管理

文章分类

全部博文(94)

文章存档

2015年(1)

2014年(2)

2013年(19)

2012年(32)

2011年(10)

2010年(30)

发布时间:2012-12-20 09:45:18

ORA-12838: cannot read/modify an object after modifying it in parallel
Cause: Within the same transaction, an attempt was made to add read or modification statements on  a table after it had been modified in parallel or with direct load. This is not permitted. 
Action: Rewrite the transa......【阅读全文】

阅读(3179) | 评论(0) | 转发(0)

发布时间:2012-12-11 16:30:41

SQL> -- 一维固定数据 SQL> DECLARE   2 TYPE type_array IS VARRAY(3) OF VARCHAR2(10);   3 v_array type_array:=type_array('abc','bcd','def');   4 BEGIN   5 FOR i IN 1..v_array.count LOOP   6 dbms_output.put_line(v_array(i));   7......【阅读全文】

阅读(4656) | 评论(0) | 转发(0)

发布时间:2012-12-11 10:22:19

    最近在工作中因数据较大,用到了CLOB字段,oracle提供了专门处理LOB字段的包 DBMS_LOB。我的理解:oracle中的Package类似于面向对象语言中的Class,而Package中的函数及过程类似于CLASS中的方法,只不过函数是有返回值,而过程是void型无返回值的。     现以CLOB为例将该包用到的几个过程总结并记录如下:   先说明一些参数, dest_lob: 需写入的CLOB型参数 amount:   写入dest_lob时字符长度 offset:&nbs......【阅读全文】

阅读(17853) | 评论(3) | 转发(1)

发布时间:2012-12-07 17:54:14

......【阅读全文】

阅读(18600) | 评论(0) | 转发(0)

发布时间:2012-12-07 17:50:43

......【阅读全文】

阅读(6755) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册