Relative Content

Tag Archive for sqloracle

Can I make Oracle not stop execution after a certain number of errors?

When doing a query to insert or update an Oracle table I get errors like “duplicated” when inserting, or “not found” when updating, but it looks like the number of errors has a limit. When that limit is reached, the query stops and the rest of the sentences are not executed.

Handle of errors

When doing a query to inserts/update oracle table I got error like duplicated when insert or not found when update but looks like the number of errors has a limit, when reach it the query stop and the rest of the sentences are not executed. We migrated from DB2 in mainframe and there is a parament added as the first sentence in the query to allows any number of errors (SER MAXERRORS -1), Is there something similar in Oracle?
Thanks.