I am just started working on SSIS. I created one package and want to impliment the transactions.
The purpose of the package is to truncate the destination table and insert the records into destination table from flat file
i taken execute sql task to truncate the table and dataflow task to insert the records into destination table.
at the package level i given transaction option as required and isolation level is readcommitted.
when i run the package my execution stops at dataflow task and it is always yellow.
If i am using delete statement instead of truncate than it is working fine.
is truncate table creating any problem? I need to use truncate.
please suggest me how to impliment transaction using truncate and dataflow task.