码迷,mamicode.com
首页 > 其他好文 > 详细

FL没有生成数据

时间:2015-01-26 19:05:41      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

(1)

create table fl_20150126 as select * from fl;

create table flmx_20150126 as select * from flmx;

(2)

update flmx set pzid = null where yy = ‘2015‘;

(3)

declare
i integer;
zdr integer;
oi_errcode integer;
oc_errtext varchar2(200);
begin
zdr := 1041;
for cur in (select distinct pcxh as pcxh from flmx where yy = 2015) loop
pkg_fmis_pzsc_process.p_cl_pzsc(zdr,cur.pcxh,oi_errcode,oc_errtext);
if oi_errcode < 0 then
return;
end if;
end loop;
end;

FL没有生成数据

标签:

原文地址:http://www.cnblogs.com/scoracle/p/4250843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!