I have a database that is dropped and recreated completely. I want to schedule a SSIS package that:
Problem is that I get an error that says that TableA does not exist as destination. So the validation sees that in my dataflow task the destination does nog exist.
How can I set the routine, such that step 1 gets done before step 2 in one dtsx?
Please note that solutions such as truncation are not an option for me.
In the SSIS package, under the properties for the Data Flow Task, set Delay Validation
property equal to True
.
This will delay the validation of the step until run-time, after the table has been created by the previous Execute SQL Task.
Careful that some errors may be suppressed when using this property.