Say when I am copying a sql table from one database to another (azure sql).
I have 1000 rows, but one fails with a SQL exception on insert.
Is there a way to handle these errors so 999 rows are inserted and the other one is saved in logs or azure storage.
NOTE: I have seen there "Conditional Splittings" in Data flows, but this happens before inserting into the sink, I would need the same after insert is attempted.
I am trying to avoid creating a stored procedure for every single copy operation as that has other limitations.