In SSIS I have DataFlowTask1 which will insert the data into TABLE A
. The following data flow task will pull the data from TABLE A
. But unfortunately, DataFlowTask2 is getting fired before the DataFlowTask1 has completed inserting the data. Is there any commit happening? How should I ensure that the following data flow starts once the previous task has completed a SQL operation?
Also, what are TransactionOption and Isolation level properties in SSIS. Will any of these properties help solve my problem?