免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2175 | 回复: 4
打印 上一主题 下一主题

游标嵌套问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-12-29 16:11 |只看该作者 |倒序浏览
set serveroutput on;
declare
  v_last_time date;
  v_cardnum cardmast.cardnum%type;   
  v_table_name audtrail.table_name%type;
  v_fid_name audtrail.fld_name%type;
  v_index_1 audtrail.index_1%type;
  v_index_2 audtrail.index_2%type;
  v_index_3 audtrail.index_3%type;
  v_index_4 audtrail.index_4%type;
  v_before_val audtrail.before_val%type;
  v_after_val audtrail.after_val%type;
  v_change_data audtrail.change_date%type;
  v_change_time audtrail.change_time%type;
  v_fld_type audtrail.fld_type%type;
  v_comments audtrail.comments%type;
  c_user audtrail.user_id%type;   
  cursor card_cursor is  
  select cardnum from cardmast,temp_cif where cardmast.cif=temp_cif.cif;
   
  cursor aud_cursor(v_time date,v_index audtrail.index_1%type) is  
  select * from audtrail where index_1 = v_index and change_date = v_time;
begin
        select last_eod_date into v_last_time from eod_ctrl;
dbms_output.put_line('ok---------'||v_last_time);   
  open card_cursor;
  begin
  fetch next from card_cursor into @v_last_time;
  while(@@fetch_status = 0)   
  open aud_cursor;
  fetch next from aud_cursor into v_table_name,v_fid_name,v_index_1,v_index_2,v_index_3,v_index_4,v_before_val,v_after_val,
  c_user,v_change_data,v_change_time,v_fld_type,v_comments;
  while(@@fetch_status = 0)
  begin
  fetch next from aud_cursor into v_table_name,v_fid_name,v_index_1,v_index_2,v_index_3,v_index_4,v_before_val,v_after_val,
  c_user,v_change_data,v_change_time,v_fld_type,v_comments;
  end;
  close aud_cursor;
  deallocate aud_cursor;
  fetch next from card_cursor into @v_last_time;
  end;
  close card_cursor;
  deallocate card_cursor;
  exception
  when no_data_found then
dbms_output.put_line('the audtrail!');
  when others then
  dbms_output.put_line('no reason');
end;
/
报错
  fetch next from card_cursor into @v_last_time;
  *
ERROR at line 27:
ORA-06550: line 27, column 17:
PLS-00103: Encountered the symbol "FROM" when expecting one of the following:
. into bulk
请问怎么解决,想了两天了,未解决~

论坛徽章:
59
2015七夕节徽章
日期:2015-08-24 11:17:25ChinaUnix专家徽章
日期:2015-07-20 09:19:30每周论坛发贴之星
日期:2015-07-20 09:19:42ChinaUnix元老
日期:2015-07-20 11:04:38荣誉版主
日期:2015-07-20 11:05:19巳蛇
日期:2015-07-20 11:05:26CU十二周年纪念徽章
日期:2015-07-20 11:05:27IT运维版块每日发帖之星
日期:2015-07-20 11:05:34操作系统版块每日发帖之星
日期:2015-07-20 11:05:36程序设计版块每日发帖之星
日期:2015-07-20 11:05:40数据库技术版块每日发帖之星
日期:2015-07-20 11:05:432015年辞旧岁徽章
日期:2015-07-20 11:05:44
2 [报告]
发表于 2010-12-29 21:16 |只看该作者
游标嵌套容易出错。

论坛徽章:
0
3 [报告]
发表于 2010-12-30 09:38 |只看该作者
我把代码更改了一下,但是运行的速度好慢呀,这样是不行的,请问这种情况怎么解决呀,难道用多表查询吗?

open  card_cursor;
      loop
       fetch card_cursor into  v_cardnum;
       exit when card_cursor%notfound;
        dbms_output.put_line('yes1'||v_cardnum);
        open aud_cursor(v_last_time,v_cardnum);
        loop
        fetch aud_cursor into v_table_name,v_fid_name,v_index_1,v_index_2,v_index_3,v_index_4,v_before_val,v_after_val,
        c_user,v_change_data,v_change_time,v_fld_type,v_comments;
        exit when aud_cursor%notfound;        
         dbms_output.put_line('oh!you like me');
        end loop;
        close aud_cursor;
      end loop;
    close card_cursor;

论坛徽章:
59
2015七夕节徽章
日期:2015-08-24 11:17:25ChinaUnix专家徽章
日期:2015-07-20 09:19:30每周论坛发贴之星
日期:2015-07-20 09:19:42ChinaUnix元老
日期:2015-07-20 11:04:38荣誉版主
日期:2015-07-20 11:05:19巳蛇
日期:2015-07-20 11:05:26CU十二周年纪念徽章
日期:2015-07-20 11:05:27IT运维版块每日发帖之星
日期:2015-07-20 11:05:34操作系统版块每日发帖之星
日期:2015-07-20 11:05:36程序设计版块每日发帖之星
日期:2015-07-20 11:05:40数据库技术版块每日发帖之星
日期:2015-07-20 11:05:432015年辞旧岁徽章
日期:2015-07-20 11:05:44
4 [报告]
发表于 2010-12-30 09:54 |只看该作者
游标套游标,当然慢了啊。

论坛徽章:
0
5 [报告]
发表于 2010-12-31 16:01 |只看该作者
是要用多表查询,这样效率会快一点吗?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP