My translation writes features to spatial and non spatial Oracle tables in a given order.
The problem is that any eventual DB related error should be reported to a web service and also logged to an xls file.
I'm using Featurewriters to control the writing order but the Featurewriter transformer has no Rejected port. How do I catch DB errors then?
SQLExecutor is fine for non spatial tables but not for spatial tables with complex geometries (due to the character number limitation for sql statements).
Should I keep the Featurewriter approach and use a shutdown python script to catch DB errors and do the Excel and web service part? Is there any other option?
Thanks for the help.