Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSIS 2008 Tasks Executing Simultaneously

I am not an expert, but I have some experience with BIDS/SSIS 2012. I recently had to start working in 2008 for reasons beyond my control, and I am running into a problem I never saw in 2012. My precedence constraints don't seem to work. I have a series of Script and Execute SQL tasks, and then once those are completed successfully, a sequence container should start running some Data Flow tasks. However, when I execute the package, the first task (Execute SQL) and the Sequence container both begin simultaneously. The preceding steps need to take place for the Data Flow tasks to succeed. Does anyone know what I am doing wrong, or how to fix it?

UPDATE 1

Please see below for an image of the package:

enter image description here

"Prepare Tables" and "Get Adj Memo Sheet" begin at the same time.

like image 388
KE0GSD Avatar asked Dec 04 '25 04:12

KE0GSD


1 Answers

Hope that i am not mis-understanding your question. It looks like you didn't connected the tasks correctly. Here some info on tasks execution.

There are 2 ways that a task begin executing

  • at the beginning of package execution (if this task is not connected to a previous task)
  • after a previous task finish executing (when tasks are connected)

If multiple task are not connected to previous tasks. They will begin ececuting in parallel when the package starts executing.

Also if they are grouped inside a sequence container they will start executing when in parallel when the sequence starts.

Screenshots for parallel execution

enter image description here

enter image description here

Screenshots for sequentiel execution

enter image description here

like image 160
Hadi Avatar answered Dec 05 '25 21:12

Hadi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!