When we should truncate the working table ?
-
At the end of the run
-
Beginning of next run
-
At any point of Time
-
Can't be done
B
Correct answer
Explanation
Working tables should be truncated at the beginning of the next run, not at the end of the current run. This allows verification that the previous run completed successfully before clearing data. Truncating at the end risks losing the working data if an error occurs before verification. The beginning of the next run ensures a clean slate while preserving the previous run's data for audit purposes.