当前位置:Gxlcms > 数据库问题 > oracle函数和存储过程示例

oracle函数和存储过程示例

时间:2021-07-01 10:21:17 帮助过:2人阅读

--为了使产生的uuid符合rfc 4122的标准(http://tools.ietf.org/html/rfc4122),例如:a8f662b8-6e7a-13fe-e040-970a437c6bd7
--函数
CREATE OR REPLACE
FUNCTION get_uuid
RETURN VARCHAR
IS
guid VARCHAR (50);
BEGIN
guid := lower(RAWTOHEX(sys_guid()));
RETURN
substr(guid,1,8)||‘-‘||substr(guid,9,4)||‘-‘||substr(guid,13,4)||‘-‘||substr(guid,17,4)||‘-‘||substr(guid,21,12);
END get_uuid;




--功能:结转.比如当前日期为8月31日,8月是没有数据的,需将七月份的数据拷贝一份作为8月份的

create or replace procedure FYS_SCH_LVYOU2_carryover (syear IN varchar2,smonth  IN varchar2)--注意:是需要结转的年月
is
     cursor t_rows is select t.* from lvyou2_bak t where t.remarks=smonth and t.year=syear;
     tmonth varchar2(10);
     t_row t_rows%rowtype;
begin
  dbms_output.enable(100000);
  for t_row in t_rows
  loop
     tmonth:=to_char(add_months(to_date(t_row.year||‘-‘||t_row.remarks,‘yyyy-mm‘),1),‘yyyy-mm‘);--结转到的年月
     dbms_output.put_line(tmonth);
     insert into lvyou2_bak values(   get_uuid(),        --UUID
                                      substr(tmonth,0,4),--year
                                      t_row.classification,
                                      t_row.num,
                                      substr(tmonth,6,2),--month
                                      t_row.remarks1,
                                      t_row.remarks2,
                                      t_row.remarks3,
                                      t_row.remarks4,
                                      t_row.remarks5,
                                      ‘‘,‘‘,‘‘,‘‘,‘‘
                                      );
  end loop;
  commit;
  exception
     when others then rollback;
end;

oracle函数和存储过程示例

标签:

人气教程排行