Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am searching for a way to transform data like it is done in Oracle with analytical functions like ROWNUM.
My exact example would be a "SUM (1) OVER (PARTITION BY ID, STAT ORDER BY ID ROWS UNBOUNDED PRECEDING)".
To build such a thing in Talend i have used tSortRow -> tMemorizeRows -> tJavaRow component with Java Code to get the desired results.
My question:
Is there a way to do these things with one component or with the same code, maybe in tELTOracleMap? I tried with OracleMap but didn't found the solution because when I put the output into tELTOracleOutput I always get java.lang.NullPointerException.
Thanks,
Arno
I am searching for a way to transform data like it is done in Oracle with analytical functions like ROWNUM.
My exact example would be a "SUM (1) OVER (PARTITION BY ID, STAT ORDER BY ID ROWS UNBOUNDED PRECEDING)"..