Consider the following scenario:
- Main Control Table: 100 rows (Denormalized table with multiple processing ID's).
- Set of 10 Parent Tables populated based on Control table.
- Set of 10 Child Tables populated based on the Parent tables.
For daily processing:
- We need to delete the data from Child tables first.
- Parent Tables next.
- Control table last.
Then insert data into Control table using multiple Insert Statements as it is denormalized.
Is this possible in one mapping?
One suggestion is to use SQL Transform and just execute the SQL's one after the other.
Is there an alternative way of Handling this?