Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Please advise me below -
I am trying to create another report to show multiple output row count. Below is example of what I want -
For now I have created 3 different reports under 3 different jobs.
report A - rows in output file are 100
report B - rows in output file are 300
report C - rows in output file are 60
I would like to create a new report under a new job shows below stuff -
report name Count
A 100
B 300
C 60
I hope I can get solution. Thanks!!
Hi,
one of the standard ways - enable statistics and meters collection
then in the Job define what you want to collect
and you will have data for any feature report, check there - https://help.talend.com/reader/hm5FaPiiOP31nUYHph0JwQ/FZO4Y1KoUlznLmxtOgoqgA
about the table (file) structure
regards, Vlad
you could, at the end of the job (or in postJob section) create simple construction
Hi,
I connect my outputs to tFixinput and then connect a tExcelOutput. the result I want to deliver is in one excel file (texceloutput) I can have below contents when I open it -
Report name | count |
A | 0 |
B | 1 |
C | 3524 |
I attached my workflow but I do not know how to show the row count of outputs into that excel file
Currently when I open the excel output, I got report name because I manually enter in tFixInput, but I don't know what function can help me deliver the row count.
Please advise how I can configure to deliver the result. Thanks!
((Integer)globalMap.get("tFileOutputExcel_1_NB_LINE"))
Explore tFlowMeter
https://help.talend.com/reader/NNO~fmVQU4rlkF9Depfdxw/sNxtJ3SnFfCvI1wK42NXDQ
Hi,
Thanks! I tried that function but I got type mismatch error - cannot convert integer to string. I am not sure why I have this error.
Below is what I did for tFixInput
Error count should be int type not String.