I have a ETL (pentaho) which give an excel file output from following steps.
Transformation 1:
- Table input (has got SQL statement with
created > DATEVALUE ORDER BY created ASC
) - Sort rows
- Excel output
Now how can I read last row of the excel output (created column) value and store into text file? So I can make sure when the job re-run then SQL statement created date
is grater than text file stored value.
Transformation 1:
- Table input (SQL statement like
created > (get the value from text file) ORDER BY created ASC
) - Sort rows
- Excel output
What would be the simplest way of achieving this?