`
lpm528
  • 浏览: 84265 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

通过实际的例子学习Oracle存储过程

 
阅读更多
--创建存储过程
CREATE OR REPLACE PROCEDURE xxxxxxxxxxx_p
(
--参数IN表示输入参数,OUT表示输入参数,类型可以使用任意Oracle中的合法类型。
 is_ym  IN CHAR
)
AS
--定义变量
 vs_msg   VARCHAR2(4000);   --错误信息变量
 vs_ym_beg  CHAR(6);      --起始月份
 vs_ym_end  CHAR(6);      --终止月份
 vs_ym_sn_beg CHAR(6);     --去年同期起始月份
 vs_ym_sn_end CHAR(6);     --去年同期终止月份
--定义游标(简单的说就是一个可以遍历的结果集)
 CURSOR cur_1 IS
 SELECT area_code,CMCODE,SUM(rmb_amt)/10000 rmb_amt_sn,SUM(usd_amt)/10000 usd_amt_sn
 FROM BGD_AREA_CM_M_BASE_T
  WHERE ym >= vs_ym_sn_beg
  AND ym <= vs_ym_sn_end
 GROUP BY area_code,CMCODE;             
  rec  cur_1%rowtype;
BEGIN
 --用输入参数给变量赋初值,用到了Oralce的SUBSTR TO_CHAR ADD_MONTHS TO_DATE 等很常用的函数。
 vs_ym_beg := SUBSTR(is_ym,1,6);
 vs_ym_end := SUBSTR(is_ym,7,6);
 vs_ym_sn_beg := TO_CHAR(ADD_MONTHS(TO_DATE(vs_ym_beg,'yyyymm'), -12),'yyyymm');
 vs_ym_sn_end := TO_CHAR(ADD_MONTHS(TO_DATE(vs_ym_end,'yyyymm'), -12),'yyyymm');
 --先删除表中特定条件的数据。
 DELETE FROM xxxxxxxxxxx_T WHERE ym = is_ym;
  --然后用内置的DBMS_OUTPUT对象的put_line方法打印出影响的记录行数,其中用到一个系统变量SQL%rowcount
 DBMS_OUTPUT.put_line('del上月记录='||SQL%rowcount||'条');
 
 INSERT INTO xxxxxxxxxxx_T(area_code,ym,CMCODE,rmb_amt,usd_amt)
 SELECT area_code,is_ym,CMCODE,SUM(rmb_amt)/10000,SUM(usd_amt)/10000
 FROM BGD_AREA_CM_M_BASE_T
  WHERE ym >= vs_ym_beg
  AND ym <= vs_ym_end
 GROUP BY area_code,CMCODE;
 
 DBMS_OUTPUT.put_line('ins当月记录='||SQL%rowcount||'条');
 --遍历游标处理后更新到表。遍历游标有几种方法,用for语句是其中比较直观的一种。
 FOR rec IN cur_1 LOOP
  UPDATE xxxxxxxxxxx_T
  SET rmb_amt_sn = rec.rmb_amt_sn,usd_amt_sn = rec.usd_amt_sn
   WHERE area_code = rec.area_code
   AND CMCODE = rec.CMCODE
   AND ym = is_ym;
 END LOOP;
 
 COMMIT;
 --错误处理部分。OTHERS表示除了声明外的任意错误。SQLERRM是系统内置变量保存了当前错误的详细信息。
EXCEPTION
   WHEN OTHERS THEN
      vs_msg := 'ERROR IN xxxxxxxxxxx_p('||is_ym||'):'||SUBSTR(SQLERRM,1,500);
   ROLLBACK;
   --把当前错误记录进日志表。
   INSERT INTO LOG_INFO(proc_name,error_info,op_date)
   VALUES('xxxxxxxxxxx_p',vs_msg,SYSDATE);
   COMMIT;
   RETURN;
END;

 ==========================================================================

CREATE  TABLE T_Temp_XinQiYue (
incoming varchar2(10),
total_list number,
done_list number,
book_list number,
ten_done_rate varchar2(10)
) ;


CREATE OR REPLACE PROCEDURE CREATE_XinQiYue_REPORT
(
    starttime in varchar2,
    endtime in varchar2,
    cur_arg out sys_refcursor

)as
  sqlstr varchar2(200);
  startdate varchar2(50);
  enddate varchar2(50);
  channel varchar2(50);    --存储游标值
  tatol number;  --应访件数
  tatol10 number;  --10日内回访成功件数
  tatol10All number:=0; --10日内回访成功件数总数
  cursor c_customer is select distinct customer_53 from t_bus_customer;
begin
   startdate := starttime;
   enddate := endtime;
   sqlstr:='delete from T_Temp_XinQiYue';
   execute immediate sqlstr;
   commit;
   
    open c_customer;
   loop
   fetch c_customer into channel;
   exit when c_customer%notfound;
  
   if channel is null then  --值为空
         --获得应访件数
				  select count(1) into tatol from t_bus_customer 
				  where activity_id='4028802629de692b0129e9eebd280034' and customer_53 is null 
				        and (input_time >=startdate and input_time <=enddate or input_time is null)
				        and customer_status not in ('10','30');
				  
				  --10日内回访成功件数
				  select count(1) into tatol10 from t_bus_customer 
				  where activity_id='4028802629de692b0129e9eebd280034' and customer_53 is null 
				  and to_date(substr(calling_time,0,10),'yyyy-mm-dd')-to_date(substr(input_time,0,10),'yyyy-mm-dd') <=10 
				  and customer_status in( '212','222') and  (input_time >=startdate and input_time <=enddate or input_time is null)
				  and customer_status not in ('10','30');
				  
				  --累计加上10日内回访成功件数
				  tatol10All:=tatol10All+tatol10;
				
				  insert into T_Temp_XinQiYue (incoming,total_list,done_list,book_list,ten_done_rate) 
					values ('',tatol,
					(select count(1) from t_bus_customer where activity_id='4028802629de692b0129e9eebd280034' and customer_53 is null and customer_status in( '212','222') and (result_id !='40284b982ae26035012ae634576d0347' or result_id is null) and  (input_time >=startdate and input_time <=enddate or input_time is null)and customer_status not in ('10','30')),
					(select count(1) from t_bus_customer where activity_id='4028802629de692b0129e9eebd280034' and customer_53 is null and result_id ='8a1186a1208125c40120847200f518ce' and  (input_time >=startdate and input_time <=enddate or input_time is null)and customer_status not in ('10','30')),
					case tatol
					when 0 then '0%'
					else
					substr(tatol10/tatol*100,0,5)||'%'
					end
					);
   else                --值不为空
			   --获得应访件数
			   select count(1) into tatol from t_bus_customer where activity_id='4028802629de692b0129e9eebd280034' and customer_53 =channel and   (input_time >=startdate and input_time <=enddate or input_time is null) and customer_status not in ('10','30');
			    --10日内回访成功件数
			   select count(1) into tatol10 from t_bus_customer where activity_id='4028802629de692b0129e9eebd280034' and customer_53 =channel and to_date(substr(calling_time,0,10),'yyyy-mm-dd')-to_date(substr(input_time,0,10),'yyyy-mm-dd') <=10 and customer_status in( '212','222')and (input_time >=startdate and input_time <=enddate or input_time is null) and customer_status not in ('10','30');
			     --累计加上0日内回访成功件数
			  tatol10All:=tatol10All+tatol10;
			
			   insert into T_Temp_XinQiYue (incoming,total_list,done_list,book_list,ten_done_rate) 
			   values (channel,tatol,
			   (select count(1) from t_bus_customer where activity_id='4028802629de692b0129e9eebd280034' and customer_53 =channel and customer_status in( '212','222') and (result_id !='40284b982ae26035012ae634576d0347' or result_id is null) and   (input_time >=startdate and input_time <=enddate or input_time is null) and customer_status not in ('10','30')),
			   (select count(1) from t_bus_customer where activity_id='4028802629de692b0129e9eebd280034' and customer_53 =channel and result_id ='8a1186a1208125c40120847200f518ce'and   (input_time >=startdate and input_time <=enddate or input_time is null) and customer_status not in ('10','30')),
			  case tatol
			  when 0 then '0%'
			  else
			  substr(tatol10/tatol*100,0,5)||'%'
			  end
			  );
   end if;
   
   end loop;

   select sum(total_list) into tatol 
   from T_Temp_XinQiYue;
     if tatol>0 then
        insert into T_Temp_XinQiYue (incoming,total_list,done_list,book_list,ten_done_rate)
        select '总计',sum(total_list),sum(done_list),sum(book_list),substr(tatol10All/sum(total_list)*100,0,5)||'%'  from T_Temp_XinQiYue;
     else
        insert into T_Temp_XinQiYue (incoming,total_list,done_list,book_list,ten_done_rate) 
        select '总计',sum(total_list),sum(done_list),sum(book_list),'0%'  from T_Temp_XinQiYue;
     end if;
     
     close c_customer;
     
     open cur_arg for select * from T_Temp_XinQiYue;

end;

 

分享到:
评论

相关推荐

    ORACLE存储过程学习源码

    通过这个"ORACLE存储过程学习源码",你可以逐步理解存储过程的工作原理,熟悉PL/SQL语言,并掌握在实际项目中运用存储过程的技能。从简单的SELECT到复杂的事务处理,每个源码都是一次学习的机会,通过反复实践,你将...

    oracle 存储过程 案例

    这个“Oracle存储过程案例”提供了丰富的学习材料,帮助用户从入门到精通掌握存储过程和游标的使用。下面我们将深入探讨这两个核心概念。 一、Oracle存储过程 存储过程是预编译的SQL语句集合,可以包含数据查询、...

    oracle存储过程学习经典[语法+实例+调用]

    在学习Oracle存储过程时,结合详细的文档如《oracle存储过程超详细使用手册.doc》和实例资料《oracle存储过程学习经典[语法+实例+调用].doc》会非常有帮助。这些文档通常会涵盖基础语法、实例解析、调用方法、异常...

    oracle的存储过程学习资料

    通过这份"Oracle的存储过程学习资料",你可以系统地学习和掌握存储过程的各个方面,从而提升你在Oracle数据库管理和开发中的技能。无论是初学者还是经验丰富的DBA,这些资源都将为你的知识库增添宝贵的一笔。

    oracle的一个简单存储过程实例

    总结来说,这个压缩包提供的资源对于学习和实践Oracle存储过程非常有用。通过分析和运行这些脚本,你可以深入理解存储过程的创建、调用和管理,以及它们在数据库管理中的重要性。同时,结合`说明.txt`中的指导,你将...

    oracle存储过程学习实例文档 创建调用

    在这个“Oracle存储过程学习实例文档”中,我们将深入探讨如何创建存储过程,以及如何在Java应用程序中调用这些过程。 1. **创建Oracle存储过程** 创建存储过程的基本语法如下: ```sql CREATE OR REPLACE ...

    oracle 存储过程.txt

    Oracle存储过程是数据库管理系统Oracle中的一个重要特性,它允许开发者编写SQL和PL/SQL代码块,以执行复杂的业务逻辑和...通过学习和理解这些内容,开发者可以更有效地利用Oracle存储过程来优化他们的数据库应用程序。

    ORACLE存储过程例子及语法说明

    通过学习Oracle存储过程的语法和实例,我们可以更有效地管理数据库,实现复杂的业务逻辑,并提升系统的稳定性和效率。文档“语法.doc”、“入门例子.doc”和“例子.doc”提供了更详细的说明和示例,对于深入理解和...

    oracle存储过程及触发器总结

    ### Oracle存储过程及触发器总结 #### 一、Oracle 存储过程概述 在Oracle数据库中,存储过程是一...以上是对Oracle存储过程及触发器的基础总结,通过学习这些基本概念和技术,可以更好地利用Oracle数据库的强大功能。

    oracle 存储过程

    Oracle存储过程是数据库管理系统Oracle...通过以上内容,我们了解了Oracle存储过程的基本概念、创建、调用方法以及其在实际工作中的应用。学习和熟练掌握存储过程,对于优化数据库管理,提高应用程序性能具有重要意义。

    Oracle存储过程实例使用显示游标

    总结来说,"Oracle存储过程实例使用显示游标"是关于如何在存储过程中利用游标进行数据迭代和操作的教程,适合初学者学习。通过这种方式,我们可以高效地处理大量数据,同时结合Function进行更复杂的逻辑处理。记住,...

    Oracle存储过程、自定义函数、动态建表存储过程等例子

    1. **Oracle存储过程**: 存储过程是预编译的SQL语句集合,存储在数据库服务器上,可以被多次调用。它们允许开发人员封装复杂的业务逻辑,减少网络流量,提高执行速度。存储过程可以有输入、输出或 inout 参数,...

    oracle存储过程例子

    oracle数据库的存储过程例子 借鉴学习吧

    oracle存储过程实例

    通过深入学习和实践"Oracle存储过程实例",初学者不仅能掌握基本的存储过程和游标操作,还能逐渐理解如何在实际项目中应用这些知识,实现更高效、更复杂的数据库操作。对于想要在Oracle数据库管理领域深化技能的人来...

    java调用Oracle存储过程的简单例子源码

    首先,调用Oracle存储过程的基本原理是通过JDBC(Java Database Connectivity)API来实现的。JDBC为Java程序提供了标准的接口,可以连接并操作各种类型的数据库,包括Oracle。在Java中,我们通常会使用`java.sql....

    oracle存储过程三部曲

    总的来说,"Oracle存储过程三部曲"是一个全面学习和掌握Oracle存储过程的绝佳资源,涵盖了从基础概念到高级技巧的各个层面,对于数据库管理员和开发人员来说,都是提升技能的重要参考。通过深入学习和实践,你将能够...

    oracle函数大全及存储过程语法 chm

    而`oracle存储过程.chm`则涵盖了存储过程的创建、调用、修改和删除等相关知识,以及如何在存储过程中使用各种PL/SQL特性。 总的来说,Oracle函数和存储过程是数据库开发的核心工具,通过深入学习和实践,你将能够更...

Global site tag (gtag.js) - Google Analytics