Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I have 2 tables, that I need to join in mssql and migrate the data to postgres
Now, there are 2 ways to do it. First, 2 joins the tables using sql in the sql editor section of tmssqlinput and then get the data to migrate to postgres. Second, to have 2 tmssqlinput components , join them in a tmap and then get the data to migrate to postgres
Which among the above I must use? The data in both the tables will be in terms of a million in number. What will be the performance implication if I use the second method, will all the data be loaded in Talend memory and then joined(if yes, if the data is huge, will not Talend crash?).? From what I understand , in sql the join happens in the sql server side and then the joined data comes to Talend
I use this join to do a one time load and also the same join for a delta(in this case , will use an extra condition to get the changed data)
Any help on this please?