I have a table(target) which has 5 rows, one of the columns name:slno have values (12,13,14,34,56)
, I need to load data from my source table to target based on the max value of target.
Example :
If in the source table for slno column values are (12,13,14,34,56,88,89,90,99)
then only (88,89,90,99)
values should go to target (along with all row values), basically I need to find max from target and based on that I need to load rows after that value.
I tried using tJavaRow
, tSetGlobalVar
, tAggregateRow
, but not able to figure out how to map.