oracle 儲存過程遊標中處理並記錄異常

studywell發表於2017-04-11

遊標中遇到異常,記錄到日誌表,繼續執行下一個,不跳出遊標;

 exception
      when others then
        v_sqlcode := sqlcode;
        v_sqlerrm := sqlerrm;
        dbms_output.put_line(sqlerrm);
        insert into hz_log values (systimestamp, v_sqlerrm, v_dblink);
        commit;


這都忘了,再記記。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29519108/viewspace-2137032/,如需轉載,請註明出處,否則將追究法律責任。

相關文章