分享
 
 
 

BULK COLLECT读取含空日期字段的BUG

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

总述:Oracle 9201中,在PL/SQL中使用BULK COLLECT读取含有空日期字段的表时会产生Ora-0331错误,并造成数据库连接断开。

数据库版本说明:

Oracle9i Enterprise Edition Release 92010 - Production

With the Partitioning, OLAP and Oracle Data Mining options

JServer Release 92010 - Production

Windows 2000 Version 50 Service Pack 4, CPU type 586

11:22:49 SQL> create table test

11:23:07 2 (id number11:23:07 3 entertime date11:23:07 4 state varchar2(1)11:23:07 5 state_date date)

11:23:07 6 partition by hash(id);

表已创建。

已用时间: 00: 00: 0000

11:23:07 SQL> insert into test values(seq_testnextval,null,0,sysdate);

已创建 1 行。

已用时间: 00: 00: 0000

11:23:21 SQL> /

已创建 1 行。

已用时间: 00: 00: 0000

11:23:23 SQL> /

已创建 1 行。

已用时间: 00: 00: 0000

11:23:24 SQL> /

已创建 1 行。

已用时间: 00: 00: 0000

11:23:24 SQL> insert into test values(seq_testnextval,sysdate,0,sysdate);

已创建 1 行。

已用时间: 00: 00: 0000

11:23:34 SQL> /

已创建 1 行。

已用时间: 00: 00: 0000

11:23:35 SQL> /

已创建 1 行。

已用时间: 00: 00: 0000

11:23:35 SQL> /

已创建 1 行。

已用时间: 00: 00: 0000

11:23:36 SQL> commit;

提交完成。

已用时间: 00: 00: 0000

11:23:39 SQL> select * from test;

ID ENTERTIME S STATE_DATE

---------- ---------- - ----------

9 0 18-5月 -05

10 0 18-5月 -05

11 0 18-5月 -05

12 0 18-5月 -05

13 18-5月 -05 0 18-5月 -05

14 18-5月 -05 0 18-5月 -05

15 18-5月 -05 0 18-5月 -05

16 18-5月 -05 0 18-5月 -05

已选择8行。

已用时间: 00: 00: 0001

11:23:43 SQL> create or replace procedure p_test as

11:23:50 2 type tb_test is table of test%rowtype;

11:23:50 3 cursor cs_test is

11:23:50 4 select * from test;

11:23:50 5 ar_test tb_test;

11:23:50 6 begin

11:23:50 7 open cs_test;

11:23:50 8 loop

11:23:50 9 fetch cs_test bulk collect

11:23:50 10 into ar_test limit 5;

11:23:50 11 for i in 1 ar_testcount loop

11:23:50 12 dbms_outputput_line(ar_test(i)entertime);

11:23:50 13 end loop;

11:23:50 14 exit when cs_test%notfound;

11:23:50 15 end loop;

11:23:50 16 close cs_test;

11:23:50 17 end;

11:23:52 18 /

过程已创建。

已用时间: 00: 00: 0000

11:23:53 SQL> exec p_test;

BEGIN p_test; END;

*

ERROR 位于第 1 行:

ORA-03113: 通信通道的文件结束

已用时间: 00: 00: 0002

11:24:01 SQL> spool off

以下来自Oracle支持网站,原始的Bug#2269035可能由于时间过久无法找到了。

Bug 号 2669115

已归档 14-NOV-2002 已更新 18-NOV-2002

产品 Oracle Server - Enterprise Edition 产品版本 92010

平台 Microsoft Windows (32-bit) 平台版本 无数据

数据库版本 92010 影响平台 Generic

优先级 Severe Loss of Service 状态 Closed, Duplicate Bug

基本 Bug 2269035 修复产品版本 无数据

问题陈述:

ORA-3114 OCCURS WHEN BULK COLLECT INTO USED TO STORE ROWS INTO A PLSQL TABLE

*** 11/14/02 06:15 am ***

Customer Tar # (Mandatory for Customer Bugs): 2724438999

Problem description:

-------------------

A procedure has been created with a cursor and the FETCH BULK COLLECT INTO

option based on the dept table

It works fine It fails if a date column is added into the table and change

the code of the procedure accordingly

Error: ORA-03114: not connected to ORACLE, occurs and sqlplus session

disconnected from the database

This happens only with 92010 database Since it doesn't occur with

92020 database on solaris, I am not

sure whether it has been fixed in this version This patch is not available

for Windows NT/2000

Keywords:

--------

stored procedure, bulk collect into, fetch, date column

Testcase location:

-----------------

Testcase step-by-step instructions:

----------------------------------

1) Connect to scott schema

2) Create a procedure using the following code:

create or replace Procedure dept_list is

TYPE DeptRecTab IS TABLE OF dept%ROWTYPE index by pls_integer;

dept_recs DeptRecTab;

CURSOR c1 IS

SELECT deptno, dname, loc FROM dept;

BEGIN

OPEN c1;

FETCH c1 BULK COLLECT INTO dept_recs limit 4;

for i in 14 loop

dbms_outputput_line ('looping i: ' || i);

dbms_outputput_line ('Dept Name: ' || dept_recs(i)dname);

end loop;

dbms_outputput_line ('closing cursor');

close c1;

END;

/

3) Execute the procedure

4) Add one more date column in dept table using:

alter table dept add (crdate date);

5) Re-create the proceduce with the following modified code:

create or replace Procedure dept_list is

TYPE DeptRecTab IS TABLE OF dept%ROWTYPE index by pls_integer;

dept_recs DeptRecTab;

CURSOR c1 IS

SELECT deptno, dname, loc, crdate FROM dept;

BEGIN

OPEN c1;

FETCH c1 BULK COLLECT INTO dept_recs limit 4;

for i in 14 loop

dbms_outputput_line ('looping i: ' || i);

dbms_outputput_line ('Dept Name: ' || dept_recs(i)dname);

end loop;

dbms_outputput_line ('closing cursor');

close c1;

END;

6) Execute the procedure It will fail with the error ORA-03114: not

connected to ORACLE

Generic/Port-specific findings:

----------------------------------

Did you test with the latest version? Yes

Rep? Platform Client Client Ver RDBMS Ver

---- ------------ --------- ------------- ------------

Y MS Windows 2000 80600 92010

Y MS Windows NT 80600 92010

N Sun SPARC Solaris 92020 92020

Available workarounds:

---------------------

None

Related bugs:

------------

Did you search for duplicate bugs?

Yes Bug:2202677 Abstract: ORA-3113 FROM BULK COLLECT INTO TABLE OF RECORDS

The bug says it has been fixed in 920 But it reproduces in 92010

Additional information:

----------------------

*** 11/14/02 06:29 am *** (CHG: Sta->36 G/P->G Asg->NEW OWNER)

*** 11/14/02 06:29 am ***

Testcase is specific to 92+ versions

Crashes on 9201 on Solaris - ie gives ORA-3113 In trace is:

ORA-07445: exception encountered: core dump [ldxeti()+20] [SIGSEGV]

[Address not mapped to object] [0x0] [] []

Works on 9202 and 10i (RDBMS_MAIN_SOLARIS_021108)

This is a duplicate of bug 2269035

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有