There is an SSIS package I am currently working on. What it does is that it runs the very same SQL statement 10 times, each time with a different value of a parameter N (N goes from 0 to 9). Statements are independent of each other (they are simply INSERT INTO ... SELECT * FROM ... WHERE some_int_column % 10 = N).There is an SSIS package I am currently working