DBOutputTable database error handling

Hi everyone!

I’m evaluating CloverETL and I’ve got this problem.

I need to insert some records into the database. For each record, if the INSERT query fails I want to do an UPDATE query.

I used the DBOutputTable component but I’ve discovered that if the query fails then the graph stops.
How can I change this behaviour?

Hello,
set maxErrors attribute to a positive value or -1 (ignore all errors). For full description see DBOutputTable.

Hello,
set maxErrors attribute to a positive value or -1 (ignore all errors). For full description see DBOutputTable.

“avackova”

Now it works! Thanks for your answer!