Hi,
We are using ADF to ETL the data into Azure SQL, and the solution is using SCD type 4. so we have 2 tables TGT and TGTHistory.
I have a stored proc which does incremental load of data, inserts/updates data into these 2 tables.
I would like to know if SP fails for any reason during the middle of execution, say 10 records were inserted and 5 were updated, But there are some more to be inserted. Will ADF automatically rollback the transaction? and Can we see the TGT and history tables in original state how it was before SP execution. Or should we handle rollback/commit in SP?