整数POSTGRESQL

时间:2017-07-20 12:22:15

标签: postgresql plpgsql

使用ora2pg工具我将我的oracle func转换为下一个函数:

CREATE OR REPLACE FUNCTION Control_Reports_Pg.control_reports_fn (P_Report_Type bigint, P_Log_File_Name text,C_Path text) RETURNS bigint AS 
  $body$
  DECLARE

   V_Return smallint;
   V_Function_Return smallint:=1;
   C_Daily_Reports varchar(300);

    C_Function_Name    varchar(200) := 'Control_Reports_Fn';
    Rec_Daily_Reports  CONTROL_REPORTS%ROWTYPE;
    G_Log_File_Type    UTL_FILE.FILE_TYPE;

   BEGIN

    -- Open Log File
    --PERFORM  control_reports_pg.send_error_mail(C_Path ,C_Function_Name);
    G_Log_File_Type := UTL_FILE.FOPEN(C_Path, P_Log_File_Name,'w');

    C_Daily_Reports := 'SELECT REPORT_ORDER,PROCEDURE_NAME,DIRECTORY_NAME,FILE_NAME,TITLE FROM CONTROL_REPORTS WHERE RUN_FLAG=1 AND REPORT_TYPE=' || P_Report_Type || ' ORDER BY REPORT_ORDER';

   -- RAISE NOTICE '%',C_Daily_Reports;
    FOR Rec_Daily_Reports IN EXECUTE C_Daily_Reports LOOP


   PERFORM UTL_FILE.PUT_LINE(G_Log_File_Type,'Procedure_Name = '||Rec_Daily_Reports.Procedure_Name);
   PERFORM UTL_FILE.PUT_LINE(G_Log_File_Type,'start time= '|| to_char(clock_timestamp(),'dd/mm/yyyy hh24:mi:ss'));
   V_Return := control_reports_pg.chrg_in_bill_not_in_crm_fn(Rec_Daily_Reports.Directory_Name,
                                               Rec_Daily_Reports.File_Name,
                                               Rec_Daily_Reports.Title);


        IF V_Return = 0 THEN
           V_Function_Return := 0;
        END IF;
       ............

当我连接到psql并且我用相关参数召唤函数chrg_in_bill_not_in_crm_fn时,我没有得到任何错误。但是,当我召唤函数control_reports_fn时,我得到下一个错误:

   mydb=> select Control_Reports_Pg.control_reports_fn  (arg1,arg2,arg3);
   NOTICE:  FUNC : Control_Reports_Fn, SQLERRM: invalid input syntax for integer: "Chrg_In_Bill_Not_In_Crm_Fn"
   CONTEXT:  PL/pgSQL function control_reports_pg.daily_control_reports_fn() line 9 at assignment
   NOTICE:  Message : invalid input syntax for integer: "Chrg_In_Bill_Not_In_Crm_Fn", Func : Control_Reports_Fn
   CONTEXT:  SQL statement "SELECT control_reports_pg.send_error_mail(SQLERRM ,C_Function_Name)"
   PL/pgSQL function control_reports_pg.control_reports_fn(bigint,text,text) line 339 at PERFORM
   PL/pgSQL function control_reports_pg.daily_control_reports_fn() line 9 at 
   assignment
    daily_control_reports_fn
    --------------------------
                    1

*在Chrg_In_Bill_Not_In_Crm_Fn里面我在sql执行结果的循环中运行(当我在psql中运行这个sql时它工作 - 没有错误)并且我用UTL写入文件。

有人可以回答下一个问题:

1)为什么我得到那个错误?当我在psql中召唤func Chrg_In_Bill_Not_In_Crm_Fn时,我没有得到任何错误 - 只是得到下一个输出:

    chrg_in_bill_not_in_crm_fn
    ----------------------------
                      0

我意识到在func control_reports_fn中循环不会启动。但是,当我运行我在psql中的选择时,我得到了回来的行。知道为什么它不进入循环以及为什么我得到那个错误?

2)正如您所看到的,我使用UTL_FILE写入文件系统中的文件。但是,我没有看到文件被创建。是因为我收到错误还是其他错误?

请帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

我的问题是变量Rec_Daily_Reports的类型为%ROWTYPE,我试图选择特定的列。

感谢您的帮助。