Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I have need help, i have two target table. for example: EMP, DEPT.
tinputexcel1-->tmap--->toracleoutput(EMP).
tinputexcel2-->tmap--->toracleoutput(DEPT).
i need to send mail, count of both table with filter condition.
select count(*) from emp where flag='m';
select count(*) from emp where flag='U';
select count(*) from dept where flag='m';
select count(*) from dept where flag='U';
---- email BODY:--------------
Source file name: emp
Matched count: 4
Unmatched count:2
Total records:6
Source file name: DEPT
Matched count: 6
Unmatched count:2
Total records:8
using context variable or any option.
Kindly help me this scenario. i am new to this ETL.
Thanks
shridhar
select count(*) from emp where flag='m';