Hi everyone
I have this javascript code after an enrichment activity:
// select rows of the last transition
var sql = "SELECT sVin,sMktSale,iCountVehicles,sDayDifference,tsDelivery,coalesce(tsDelivery - lag(tsDelivery) over(partition by sCustomerId order by tsDelivery), 0) as Difference FROM " + vars.tableName;
var contracts = sqlSelect("resultQuery,@vin:string,@MktSale:string,@CountVehicles:int,@DayDifference:string,@deliveryDate:date,Difference:string", sql); //
// Iterate each row
for each(var contract in contracts.resultQuery){
var newString = contract.Difference;
var sql = "UPDATE "+ vars.tableName + " SET sDayDifference='"+newString.toString()+"' WHERE sVin='"+contract.@vin.toString()+"'";
//logInfo('Executing '+sql);
sqlExec(sql);
}
the code works only if the enrichment activity has below 70000 rows but if the activity has above 70000 rows the contracts.resultQuery variable print undefined and the update statement doesn't execute.
Could you help me to understand what is the reason? is there a limit of rows to execute that command?
I really appreciate if you could help me.
Thanks.
SL.