Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I'm having three identical databases with the same schema (tables and columns) which means one DB per country. Example: the table customer exists in the 3 databases with the same fields. Only the content is different because every country has its own clients. I want to merge the 3 tables in a single table at the destination. Normally I would use three tOracleInput. Then add a value to indicate the country name in a tamp for each of the 3 countries and then concatenate all in a tUnite.
But since the 3 databases have the exactly same architecture,I want to do it in one single tOracleInput and execute the same sql statement "select code, nom from the customer" but on 3 different databases. I thought about using context variable and tLoop but I am having problems to correctly design a functional job.