the following error occurs while inserting empty blob to return blob locators.
ora-22990: lob locator cannot span transaction
dml statements were executed within a for loop to insert an empty blob and an attempt to fetch is made followed by commit within the loop.
solution
it is not advisable to use a commit inside a loop. use commit after the loop ends.
坏男孩 2009-05-20 13:24
抢个沙发坐
坏男孩 2007-12-27 21:56
不知道怎么的,又可以用了
坏男孩 2007-11-07 18:33
图很漂亮啊
坏男孩 2007-11-05 08:37
我崇尚简单,喜欢这种方式!!
坏男孩 2007-11-03 10:49
如何快速的发电子邮件:
坏男孩 2007-10-30 09:03
建议用wiki来管理这些翻译好的内容,以便于大家来修改
坏男孩 2007-09-24 21:14
介绍ldap的
坏男孩 2007-09-22 17:00
团队的产品用于实际开发是件值得庆祝的事情!!!
坏男孩 2007-09-17 09:10
国内创业比较有前途
坏男孩 2007-09-04 16:06
写的好,顶
portal的三大作用:
1、统一身份认证
2、个性化定制
3、资源整合和复用
坏男孩 2007-08-28 12:50
@adaiye
不是啊,不知道猴年马月的一个收藏了
坏男孩 2007-08-28 09:20
强烈推荐,因为今天我又用到了!
re: 系统分析师最新资料[未登录] 坏男孩 2007-08-27 12:12
badboyryan@gmail.com
坏男孩 2007-08-19 22:50
不要理这帮人,坚持自己的路!
真金不怕火炼,是金子总会发光的!
再说了,书这个东西,谁需要哪方面的东西,就买哪方面的书,哪里有什么好坏之分啊!
黄色书的销量不见得比我们科长写的书少啊!
坏男孩 2007-08-19 22:45
沈阳很漂亮,科长就多待两天;
re: 我的辞职信 坏男孩 2007-08-15 11:29
@小强
谢谢!
坏男孩 2007-07-17 10:32
好文章需要顶起来
坏男孩 2007-07-16 17:03
今天一天没有办法上网,抱歉啊
坏男孩 2007-07-13 22:16
@cownew开源团队
中科不用客气,光盘我看过了,真是实心实意的写java开发过程
坏男孩 2007-06-30 07:23
@luffy
你实验一下啊,jbuilder2007现在是eclipse芯
坏男孩 2007-06-27 20:52
沈阳这么乱啊!
坏男孩 2007-06-09 10:43
plc ,dcs,硬件的东西,现在纯粹软件,不过硬件基础还有阿!
坏男孩 2007-06-07 11:28
ejb jboss这块应该一起学习!
坏男孩 2007-06-06 15:25
@芊芊
说的很精辟
坏男孩 2007-06-04 16:05
写的好啊,顶
坏男孩 2007-05-31 12:38
身体是革命的本钱,我越来越信服这句名言
坏男孩 2007-05-18 13:18
我的机器只有768m
坏男孩 2007-05-18 12:46
用log4j debug一下,,
坏男孩 2007-05-16 12:51
我是delphi java oracle
感觉比较适用
坏男孩 2007-05-14 08:22
ding
坏男孩 2007-05-14 08:19
ding
坏男孩 2007-05-10 19:16
恭喜dudu站长,,,更上一层楼
坏男孩 2007-04-24 22:12
下载2.6内核linux-2.6.2-rc2.tar.gz
不需要下载
这个补丁是给以前的内核版本升级到2.6.2-rc2用的
2.本人系统为redhat8.0
解压到目录/usr/src
#cp linux-2.6.2-rc2.tar.gz /usr/src
#cd /usr/src
#tar -zxvf linux-2.6.2-rc2.tar.gz
建立链接文件
#cd /usr/src
#ln –s linux-2.6.2-rc2 linux-2.6
#ln –s linux-2.6 linux
检查原代码
#cd /usr/src/linux
#make mrproper
这步是为确保原代码目录下没有不正确的.o文件及文件的相互依赖。
配置核心选项
#make menuconfig
基本上保持默认选项就可以了,但是要注意的是必须把ext2和ext3文件系统支持编进内核,否则升级内核重新启动是会有错误:
kernel panic: no init found. try passing init= option to kernel
ext2和ext3文件系统配置为:
file systems -
<*>; second extended fs support
ext2 extended attributes
ext2 posix access control lists
ext2 security labels
<*>; ext3 journalling file system support
ext3 extended attributes
ext3 posix access control lists
ext3 security labels
jbb (ext3) debugging support
编译内核
确保所有文件都处于最新的版本状态下
#make clean
编译模块
#make modules
安装模块
#make modules_install
此时在/lib/modules下出现新内核模块文件夹2.6.2-rc2
使用新内核
#cp system.map /boot/system.map-2.6.2-rc2
#rm /boot/system.map
#ln –s /boot/system.map-2.6.2-rc2 /boot/system.map
#cp arch/i386/boot/bzimage /boot/vmlinuz-2.6.2-rc2
#rm /boot/vmlinuz
#ln –s /boot/vmlinuz-2.6.2-rc2 /boot/vmlinuz
#new-kernel-pkg –install –mkinitrd –depmod 2.6.2-rc2
执行完new-kernel-pkg命令后在/boot下生成新印象文件initrd-2.6.2-rc2,同时/etc/grub.conf中增加了新核心的启动项,
例如:
tilte linux (2.6.20-rc2)
root(hd0,0)
kernel /boot/vmlinuz-2.6.2-rc2 ro root=label=/
initrd /boot/initrd-2.6.2-rc2
将kernel项中的root=label=/ 改成 root=/dev/hda7 (/dev/hda7是本人linux的根分区),否则重启动后会有错误:
kernel panic: no init found. try passing init= option to kernel
#reboot
重启后grub中出现2.6内核的启动项,现在就用新的核心试试吧。
坏男孩 2007-04-16 13:39
看看我做的全文检索在
探路者搜索引擎!
坏男孩 2007-04-16 08:20
恭喜你,应该是阴历!
坏男孩 2007-04-16 08:19
@daisy
青州是个好地方,
山好,人也好
坏男孩 2007-04-11 09:20
我喝了酒以后脸通红啊!是不是不好啊,那就戒酒
坏男孩 2007-04-11 09:15
是不是应该说,寿比南山不老松,福如东海长流水
坏男孩 2007-04-03 16:31
学习struts2的好地方啊
坏男孩 2007-04-02 08:41
系统设计的界面标准-好贴就顶