Submitted Questions

  • how to remove the null values in flat file ?

    import flat file from the source (with nulls) it should display without null values in the target

    laxmi

    • Nov 10th, 2014

    We can use validate record component with is_null() function.

  • ETL Transformation question

    Employee name start with A pass to one target,Employee name start with S pass to 2nd target,Employee name start with J pass to 3rd target,other pass to other target.

    Sandy

    • Aug 31st, 2014

    To make current answers generic and mapping applies even if you get more names starting with different characters: Use Sorter, Expression & Transaction control transformations - Using sorter transfor...

    amrie

    • Jul 30th, 2014

    In the expression Create a variable port v_employee= IIF( substr(EMPLOYEENAME,1,1)=A,FLAG1 IIF( SUBSTR(EMPLOYEENAME,1,1)=S,FLAG2, IIF( SUBSTR(EMPLOYEENAME,1,1)=J,FLAG3,FLAG4 ))) create a output po...