




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、更详细的要求(如命名、缩进、换行等)需参考编程规范,本文档只是从整体上进行演示create or replace procedure sp_kr_ns_hn_mtv_dtal要求编译是完全成功的,不得留有警告或者错误( iv_date in varchar2, oi_return out integer) /* head * name masakr#sp_kr_ns_hn_mtv_dtal * caption 河南手机电视专区日累计报表 * type 日报表 * parameter iv_date in varchar2必须与实际定义完全一致 统计日期,格式:yyyymmdd * parame
2、ter oi_return out integer 执行状态码,0 正常,其它 出错 * description 需求:267536,作用:河南手机电视专区日累计报表和日累计智能查询,运行时间:120秒必须按样例格式涵盖这3方面 * target masakr#tb_kr_ns_hn_mtv_dtal 河南手机电视专区日累计报表 * target masakr#tb_kr_ns_hn_mtv_list_dtal 河南手机电视专区日累计智能查询 * source masadw#tb_dw_su_stm_list_cur 手机电视清单表 * source masamk#tb_mk_sc_user_
3、dtal 用户日累计事实表* middle masakr#tb_kr_ns_hn_mtv_list_dt_tmp* middle masakr#tb_kr_ns_hn_mtv_list_dt_tmp1 * version 2.0 * author 张三 * create-date 2009-08-24 * todo * version * mender * modify_date * modify_desc * copyright *厂家 河南移动 */ is /* description 变量定义 */每个大程序块前用这个固定注释格式/* description 具体说明 */描述代码作用
4、vi_task_id integer; - 任务日志id vv_task_name varchar2(30); - 任务名 vv_table_name varchar2(30); - 表名 vv_task_sign varchar2(30); - 任务标识 vv_task_pos varchar2(50); - 任务位置 vi_err_code integer; - 出错代码 vv_err_msg varchar2(200); - 出错信息 vi_result integer; - 临时结果 exc_return exception; - 程序中间返回自定义异常 exc_error excep
5、tion; - 程序出错返回自定义异常 v_owner varchar2(30); - 属主 v_proc_name varchar2(30); - 通知报表刷新的过程名 version_date varchar2(8); -报表刷新的版本日期 v_tz_flag integer; -通知成功标志(0成功) vd_date date; -统计日期 vd_first_date date; 注意删除不需要的变量定义,否则会有提示性告警 -统计日月初第一天begin /* description 允许并行处理 */ execute immediate alter session enable par
6、allel dml; /* * description 变量初始化 */ vv_task_name := sp_kr_ns_hn_mtv_dtal; vv_table_name := tb_kr_ns_hn_mtv_dtal; vd_date := to_date(iv_date,yyyymmdd); vd_first_date := trunc(vd_date,mm); v_owner := masakr; v_proc_name := sp_kr_ns_hn_mtv_dtal; version_date := iv_date; vv_task_sign := iv_date; /* * d
7、escription 程序开始日志 */ vv_task_pos := 程序开始日志; masasys.sp_kr_sys_log(vi_task_id, vv_task_name, vv_table_name, vv_task_sign, 1, null, null, null); /* * description 参数以及数据源检查 */ vv_task_pos := 检查输入参数; if (iv_date is null) then vi_err_code := -1; vv_err_msg := 没有输入统计日期参数; raise exc_error; end if; vv_task_
8、pos := 判断源数据源是否存在; select count(*) into vi_result from masadw.tb_dw_su_stm_list_cur a where a.deal_date = vd_date and rownum = 1; if vi_result = 0 then vi_err_code := -40000; vv_err_msg := 数据源masadw.tb_dw_su_stm_list_cur没有统计日数据; raise exc_error; end if; select count(*) into vi_result from masamk.tb_
9、mk_sc_user_dtal a where a.statis_date = trunc(sysdate-1) and rownum = 1; if vi_result = 0 then vi_err_code := -40001; vv_err_msg := 数据源masamk.tb_mk_sc_user_dtal没有统计日数据; raise exc_error; end if; /* * description 报表处理开始 */ vv_task_pos := 删除旧数据; delete from tb_kr_ns_hn_mtv_dtal where statis_date = vd_d
10、ate; delete /*+parallel(a,4)*/ from tb_kr_ns_hn_mtv_list_dtal a where statis_date = vd_date or statis_date = vd_date - 3;数据必须有周期控制,分区表要考虑DROP历史分区;报表类要删除过早的历史数据。commit; vv_task_pos := 清除临时表数据;如无特殊要求,应将清除所有中间表的操作集中在一起,便于维护execute immediate truncate table tb_kr_ns_hn_mtv_list_dt_tmp;execute immediate t
11、runcate table tb_kr_ns_hn_mtv_list_dt_tmp1; vv_task_pos := 手机视频使用客户日累计数据; insert into tb_kr_ns_hn_mtv_list_dt_tmp必须明确使用列表,不得出现insert into tb_kr_ns_hn_mtv_list_dt_tmpselect * from XXX的情况 ( serv_number , -号码 is_mf_cust , -是否免费业务用户 mf_use_count , -免费业务使用次数 is_ac_cust , -是否按次业务用户 ac_use_count , -按次业务使用次
12、数 is_by_cust , -是否包月用户 by_use_count , -包月业务使用次数 total_sr -按次收入 ) select /*+parallel(a,8)*/ a.serv_number, -号码 case when a.operation_code = 20810000 then 1 else 0 end, -是否免费业务用户 case when a.operation_code = 20810000 and a.play_duration 0 then 1 else 0 end, -免费业务使用次数 case when a.operation_code = 20820
13、000 then 1 else 0 end, -是否按次业务用户 case when a.operation_code = 20820000 and a.cdr_info_fee 0 then 1 else 0 end, -按次业务使用次数 case when a.operation_code = 10830000 then 1 else 0 end, -是否包月用户 case when a.operation_code = 10830000 and a.play_duration 0 then 1 else 0 end, -包月业务使用次数 case when a.operation_cod
14、e = 20820000 then a.cdr_info_fee else 0 end -按次收入 from masadw.tb_dw_su_stm_list_cur a用别名是个好习惯,即使只有一个表。当多表关联时,别名是必须的! where a.operation_code in (10830000,20810000,20820000) and a.deal_date between vd_first_date and vd_date; commit; vv_task_pos := 汇总手机视频使用客户数日累计明细数据; insert into tb_kr_ns_hn_mtv_list_d
15、tal ( statis_date , -统计日期 serv_number , -号码 area_code , -地区编码 area_name , -归属地市公司 is_mf_cust , -是否免费业务用户 mf_use_count , -免费业务使用次数 is_ac_cust , -是否按次业务用户 ac_use_count , -按次业务使用次数 is_by_cust , -是否包月用户 by_use_count , -包月业务使用次数 total_sr -总收入 ) select /*+parallel(c,8) parallel(a,4)*/ vd_date ,-统计日期 a.ser
16、v_number , -号码 b.area_code ,-地区编码 max(trim(b.area_code_name) ,-归属地市公司 max(nvl(a.is_mf_cust,0) , -是否免费业务用户 sum(nvl(a.mf_use_count,0) , -免费业务使用次数 max(nvl(a.is_ac_cust,0) , -是否按次业务用户 sum(nvl(a.ac_use_count,0) , -按次业务使用次数 max(nvl(a.is_by_cust,0) , -是否包月用户 sum(nvl(a.by_use_count,0) , -包月业务使用次数 case when
17、max(nvl(a.is_by_cust,0) = 1 then sum(nvl(a.total_sr, 0)/100 + 10 else sum(nvl(a.total_sr, 0)/100 end - 总收入 from masamk.tb_mk_sc_user_dtal c, tb_kr_ns_hn_mtv_list_dt_tmp a, masadw.tb_dic_area_code b where trim(c.area_code) = trim(b.area_code) and a.serv_number = c.serv_number and c.user_status_id H a
18、nd c.statis_date = trunc(sysdate - 2) group by a.serv_number , -号码 b.area_code; commit; vv_task_pos := 汇总报表数据; insert into tb_kr_ns_hn_mtv_dtal ( statis_date , area_prov , -省权 area_desc , -地区名称 area_code , -区号 - mf_cust_count , -免费业务用户数 mf_use_count , -免费业务使用次数 ac_cust_count , -按次业务用户数 ac_use_count
19、, -按次业务使用次数 ac_sr , -按次业务收入 by_cust_count , -包月业务用户数 by_use_count , -包月业务使用次数 by_sr , -包月业务收入 total_cust_count , -总用户数 total_sr -总收入 ) select vd_date, -1, case when grouping(trim(a.area_code)=1 then 全省 else max(b.area_code_name) end , decode(grouping(trim(a.area_code), 1, Z, trim(a.area_code) area_c
20、ode, - count(distinct case when a.is_mf_cust = 1 then a.serv_number end), -免费业务用户数 sum(a.mf_use_count), -免费业务使用次数 count(distinct case when a.is_ac_cust = 1 then a.serv_number end), -按次业务用户数 sum(a.ac_use_count), -按次业务使用次数 sum(case when a.is_ac_cust = 1 and a.is_by_cust 1 then a.total_sr when a.is_ac_
21、cust = 1 and a.is_by_cust = 1 then a.total_sr - 10 else 0 end), -按次业务收入 count(distinct case when a.is_by_cust = 1 then a.serv_number end), -包月业务用户数 sum(a.by_use_count), -包月业务使用次数 count(distinct case when a.is_by_cust = 1 then a.serv_number end)*10, -包月业务收入 count(distinct a.serv_number), -总用户数 sum(a.
22、total_sr) from tb_kr_ns_hn_mtv_list_dtal a , masadw.tb_dic_area_code b where trim(a.area_code) = trim(b.area_code(+) and a.statis_date = vd_date group by rollup(trim(a.area_code); vv_task_pos := 分公司级补0,为报表刷新做准备;报表补零有很多算法,由作者自己决定,样例是一种常见的方法。 insert into tb_kr_ns_hn_mtv_dtal( statis_date , area_prov ,
23、 -省权 area_desc , -地区名称 area_code , -区号 mf_cust_count , -免费业务用户数 mf_use_count , -免费业务使用次数 ac_cust_count , -按次业务用户数 ac_use_count , -按次业务使用次数 ac_sr , -按次业务收入 by_cust_count , -包月业务用户数 by_use_count , -包月业务使用次数 by_sr , -包月业务收入 total_cust_count , -总用户数 total_sr -总收入 ) select vd_date, -1, aa.area_code_name,
24、 aa.area_code, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 from (select b.area_code, b.area_code_name from tb_kr_ns_hn_mtv_dtal a, masadw.tb_dic_area_code b where a.area_code(+) = b.area_code and a.area_code is null and a.statis_date(+) = vd_date ) aa; /* description 得到数据量 */vi_result := sql%rowcount;这个必须在COMMIT前执
25、行 commit; /* * description 报表处理结束 */ vv_task_pos := 清除临时表数据;execute immediate truncate table tb_kr_ns_hn_mtv_list_dt_tmp;execute immediate truncate table tb_kr_ns_hn_mtv_list_dt_tmp1; vv_task_pos := 通知刷新报表; v_tz_flag := masasys.fun_bi_rpt_reflash_log(v_owner,v_proc_name,version_date); 取消通知刷新函数执行失败向作
26、者发短信的处理方式,改为报错后写日志,但是不要对数据区进行回滚 if v_tz_flag0 then vi_err_code := -1; vv_err_msg := 通知刷新函数返回错误; raise exc_error;end if; /* * description 程序运行完成,记录程序结束日志,正常返回 */ vv_task_pos := 程序结束日志; masasys.sp_kr_sys_log(vi_task_id, null, null, null, 0, null, null, vi_result); oi_return := 0;exception when exc_ret
27、urn then /* description 程序中间返回,记录程序结束日志,正常返回 */ masasys.sp_kr_sys_log(vi_task_id, null, null, null, 0, null, vv_task_pos, vi_result); oi_return := 0; when exc_error then /* description 程序出错返回自定义异常,记录程序出错日志,出错返回 */ rollback; masasys.sp_kr_sys_log(vi_task_id, null, null, null, vi_err_code, vv_err_msg,
28、 vv_task_pos, vi_result); oi_return := vi_err_code; when others then /* description 程序出错,得到出错信息,回滚事务,记录程序出错日志,出错返回 */ vi_err_code := sqlcode; vv_err_msg := substr(sqlerrm, 1, 200); rollback; masasys.sp_kr_sys_log(vi_task_id, null, null, null, vi_err_code, vv_err_msg, vv_task_pos, vi_result); oi_retu
29、rn := vi_err_code;end ;/* description 以下是程序附加信息*/将以前在程序头部的几类附加信息统一调整到尾部,便于CTL+END一步定位。注意必须按:建表语句、前台位置、日志SQL的顺序书写/*建表语句 -51 kr create table tb_kr_ns_hn_mtv_dtal ( statis_date date, area_prov char(2), -省权 area_desc varchar2(64), -地区名称 area_code char(5), -区号 mf_cust_count integer, -免费业务用户数 mf_use_count integer, -免费业务使用次数 ac_cust_count integer, -按次业务用户数 ac_use_count integer, -按次业务使用次数 ac_sr number, -按次业务收入 by_cust_count integer, -包月业务用户数 by_use_count integer, -包月业务使用次数 by_sr number, -包月业务收入 total_cust_count integer, -总用户数 total_sr number -总收入 );comment on table masakr. tb
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 公会礼品供货合同样本
- 供货框架协议合同样本
- 三农拍摄合同样本
- 代销化肥合同样本
- 代理录入业绩合同标准文本
- 中交二航局分包合同标准文本
- 临时工用工合同样本
- 会务租用合同样本
- led屏维修合同样本
- 产业发展顾问合同样本
- 国企素质测评试题及答案
- 2024春苏教版《亮点给力大试卷》数学六年级下册(全册有答案)
- 中考英语语法填空总复习-教学课件(共22张PPT)
- 综合办公楼装饰装修工程招标文件
- 玻璃体切除手术配合课件
- 手足口病小讲课护理课件
- 2024年浙江杭州地铁运营分公司招聘笔试参考题库含答案解析
- 《质量检验培训》课件
- 2023版设备管理体系标准
- 独唱曲 课件-2022-2023学年高中音乐人音版(2019)必修 音乐鉴赏
- 二、问题解决型(指令性目标)QC成果案例
评论
0/150
提交评论