Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to load(update or insert) lots of data. update or insert option is slow (40 rows/sec).
Is there any faster way to perform upsert(update or insert).
Source DatabaseQL Server
Destination Database: postgreSQL
@vishalw007 , you can split the process into two flows like insert and update separately and use the bulk component to improve performance.
@vishalw007 , you can use Bulk component to load into postgresql.
tPostgresqlOutputBulkExec
https://help.talend.com/reader/jomWd_GKqAmTZviwG_oxHQ/cKJ1KqGuvlko6HlkBYdlPQ
@vishalw007 , you can split the process into two flows like insert and update separately and use the bulk component to improve performance.
Hi ,
can you help me with these questions
is it still the same way that we can’t use both insert or update during bulk operation ?
how to find out whether record already exits in table or not using tMap ?
PostgreSQL and MySQL tDBOutput components have the option to use insert extensions.
Please take care your table has an appropriated primary key and than you can use the Action on Data: "Insert or update on duplicate key and unique index".
Both database types have such options slightly different implemented but with the same result.