Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
"SELECT id1, id2, FROM table_name WHERE id1 = " + (String)globalMap.get("row1.id1") + " AND id2 = " + (String)globalMap.get("row1.id2")
It is not possible to have in this scenario one continuing flow. The only way is to collect all datasets into a file or better into a new database table.
Consider in the tMap using reload each row rather than load once. That way you may be able to use tMap with a lookup from the tOracleInput.
Consider using tHashMap instead of tFileOutputDelimited. tHashMap will work the same as the external file, but exists in memory. This should be somewhat faster if total data volumes permit.
"SELECT id1, id2, FROM table_name WHERE id1 = " + (String)globalMap.get("row1.id1") + " AND id2 = " + (String)globalMap.get("row1.id2")
It is not possible to have in this scenario one continuing flow. The only way is to collect all datasets into a file or better into a new database table.
Consider in the tMap using reload each row rather than load once. That way you may be able to use tMap with a lookup from the tOracleInput.
Consider using tHashMap instead of tFileOutputDelimited. tHashMap will work the same as the external file, but exists in memory. This should be somewhat faster if total data volumes permit.