Skip to main content

Selecting errors from ODI repository tables

Sometimes, ETL packages doesn't care about errors as errors can be handled after ETL is finished, but we want to know about errors and fix them. I use this procedure to mail errors to ETL group.


CREATE OR REPLACE procedure STG.ODI_SESSION_ERROR_LOG ( p_etl_date number ) is

begin
DELETE FROM ODI_SESSION_ERROR_LOG T2
WHERE 1=1
         and TRUNC (t2.ETL_DATE ) >=to_date(to_char(p_etl_date), 'YYYYMMDD');
       
         COMMIT;

INSERT INTO ODI_SESSION_ERROR_LOG
 SELECT t1.SESS_NO
        ,t1.SCEN_TASK_NO
        ,t1.TASK_NAME2
        ,t1.TASK_NAME3
        ,t2.ERROR_MESSAGE
        ,t2.TASK_STATUS
        ,t2.task_beg  ETL_DATE
        , sysdate INSERT_DATE
    FROM snp_sess_task t1, SNP_SESS_TASK_LOG t2
   WHERE     1 = 1
         AND t1.sess_no = t2.sess_no
         AND T1.SCEN_TASK_NO = T2.SCEN_TASK_NO
         and TRUNC (t2.TASK_BEG ) >=to_date(to_char(p_etl_date), 'YYYYMMDD')
         AND TASK_STATUS ='E'
         and exists (select t3.sess_no from  snp_session t3
         where 1=1
         and t1.sess_no=t3.sess_no
         CONNECT BY PRIOR t3.sess_no = t3.parent_sess_no
      START WITH t3.sess_name = 'PCK_ETL'--Package of ETL in ODI
         )
ORDER BY 1, 2;

COMMIT;

end;
/





exec STG .ODI_SESSION_ERROR_LOG(to_char(trunc(sysdate), 'YYYYMMDD'));




You can get load plan execution errors with the code below:


SELECT * FROM ODIW.SNP_LP_INST a, ODIW.SNP_LPI_RUN b
WHERE a.I_LP_INST=b.I_LP_INST
and b.STATUS='E'
and LOAD_PLAN_NAME ='<load_plan_name>'

Comments

Popular posts from this blog

ODI KM Adding Order by Option

You can add Order by statement to queries by editing KM.I have edited IKM SQL Control Append to provide Order by.  1) Add an option to KM named USE_ORDER_BY, its type is Checkbox and default value is False. This option determines you want an order by statement at your query. 2)Add second option to KM named ORDER_BY, type is Text. You will get order by values to your query by this option. 3) Editing Insert New Rows detail of KM. Adding below three line code after having clause. That's it! <% if (odiRef.getOption("USE_ORDER_ BY").equals("1")) { %> ORDER BY <%=odiRef.getOption("ORDER_BY" )%> <%} %>  If USE_ORDER_BY option is not used, empty value of ORDER_BY option get error. And executions of KM appears as such below; At this execution, I checked the KM to not get errors if ORDER_BY option value is null. There is no prove of ORDER BY I'm glad.  Second execution to get  Ord

Creating Yellow Interface in ODI

Hello everyone! In Oracle data integrator (ODI), an  interface  is an object which populates one datastore, called the  target , with data coming from one or more other datastores, known as  sources . The fields of the source datastore are linked to those in the target datastore using the concept of  Mapping . Temporary interfaces used in ODI are popularly known as  Yellow Interfaces . It is because ODI generates a yellow icon at the time of creation of a yellow interface as opposed to the blue icon of a regular interface. The advantage of using a yellow interface is to avoid the creation of  Models each time you need to use it in an interface. Since they are temporary, they are not a part of the data model and hence don’t need to be in the Model. So let’s begin and start creating our yellow interface! Pre-requisites : Oracle 10g Express Edition with *SQL Plus, Oracle Data Integrator 11g. Open *SQL Plus and create a new table  Sales  in Oracle. You can use any existing ta

Running Count in Talend Open Studio

Most Talend components keep a count of the records processed using variables like NB_LINE or NB_LINE_OK.  But these are only available after all processing is completed.  Define your own counter variable to keep a running count for use in a tMap. Variables like tFilterRow.NB_LINE or tAccessOutput.NB_LINE_INSERTED can be used to report the number of affected lines after a subjob's processing.  However, it may be of use to get the current line index for use in a tMap.  The index variables used to form NB_LINE aren't available during processing; they're only written out the globalMap at the end of processing. In this example, staging records are loaded from Excel to Access.  The order in which the Excel records are read is preserved in a database column called DISPLAY_SEQ_NB.  Note that there is an auto-increment column used for record ID in the Access table.  This could be used to infer a loading order, but this job uses a separate column to keep the ID as a meaningless surr