Greetings!I have implemented CDC in our DB to capture data change for multiple tables and it runs smooth. I know that if I want to include more tables under CDC I can add more child package for populating new tables. But this is good for the incremental load - what happens to the initial load of new table? We know that the initial load should run only once and if I add the new table load DFT in the initial load package then all the other tables included in the package will be repopulated causing data duplication. Any idea on how to handle this initial loading of new tables added to the CDC implementation avoiding redundant loading of other tables?
↧