hey guys i want to use a ssis task to generate daily sqlite dbs... the ssis job exports large amounts of data to sqlite.
the problem i am facing is ssis opens and closes a transaction for every insert making this task painfully slow
is there a way i can instruct ssis to open a transaction at the beginning of the task, perform thousands of inserts and finally close the transaction
i know i can easily do this using the system.data.sqlite dll and c# code but the sole reason i want to use ssis is to have a solution with bare minimum code
can anybody help please... thanks in advance