What does incremental loading mean?
- A Loading only new or changed records rather than the full dataset each run
- B Loading one table at a time
- C Loading in small batches for testing
- D Loading during off-peak hours
Answer
Loading only new or changed records rather than the full dataset each run
It requires a reliable change marker such as an updated timestamp or CDC stream, and careful handling of deletes.





