Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
May i know how to implement attached logic in talend.
Thanks
shridhar
Or put that logic in a stored procedure, and call the stored procedure from tSQLRow. It is much cleaner. Remember, if some logic can be done by the DB, then leverage the DB, for example ELT, Views and Stored Proc. When you do ETL, you are adding overhead, because you are extracting the data from the DB, transfering it over the network, loading it into Java Memory, then processing/transforming, then transfer over network again and write to DB. So all of these add to to the overhead.
Hi David,
we are using open studio edition and tSQLRow component is free edition or enterprise edition?
Main requirement we are not interested PLSQL proc is database, everything code i want convert in to Talend.
Thanks
Shridhar
Hi,
Yes i agree that performance issue occur when continues hit to database. The execution native driver much faster that different drive if i am correct.
we are using open studio edition and tSQLRow component is free edition or enterprise edition?
Main requirement we are not interested PLSQL proc is database, everything code i want convert in to Talend.
Thanks
Shridhar
Hi David,
I have searched in the Palette , there are no component like tSQLRow. I am using Talend 6.3.0.20.
You mean to say tOracleRow component.
Thanks
Shridhar
Hi David,
Thanks for inputs, i have last query.
What is best way to do below query in talend.
UPDATE table1 RTMC
SET FLAG = 'MATCHED'
WHERE EXISTS (SELECT 1
FROM table2 RTMF
WHERE RTMC.TRN_REF_NO = RTMF.REF_NO
AND RTMC.LAMT = RTMF.REAMOUNT);
If records contains in millions.
Thanks
Shridhar